export declare const resetCounts: () => void; export declare const getCounts: () => { new: number; changed: number; moved: number; }; export declare const clearBody: () => void; export declare const resetBrowserState: () => void; /** * Override what `Element.getAnimations()` returns (only `finished` is consulted). * Call without arguments to restore the never-finishing default. */ export declare function mockAnimations(mock?: () => { finished: Promise; }[]): void; export declare const passTime: (ms?: number) => Promise; export declare function setMediaQuery(query: string, matches: boolean): void;