import * as Types from '../types/types.js'; import type { HandlerName } from './types.js'; export interface Data { animationFrames: Types.Events.SyntheticAnimationFramePair[]; presentationForFrame: Map; } export declare function reset(): void; export declare function handleUserConfig(config: Types.Configuration.Configuration): void; export declare function handleEvent(event: Types.Events.Event): void; export declare function finalize(): Promise; export declare function data(): Data; export declare function deps(): HandlerName[];