import * as Types from '../types/types.js'; import type { FinalizeOptions } from './types.js'; export declare function reset(): void; export declare function handleEvent(event: Types.Events.Event): void; export declare function finalize(options: FinalizeOptions): Promise; export interface ImagePaintData { paintImageByDrawLazyPixelRef: Map; paintImageForEvent: Map; paintImageEventForUrl: Map; paintEventToCorrectedDisplaySize: Map; /** Go read the comment in finalize(). */ didCorrectForHostDpr: boolean; } export declare function data(): ImagePaintData;