import React from 'react'; export type Clock = { subscribe: (onChange: () => void, keepAlive: boolean) => () => void; now: () => number; setTickInterval: (ms: number) => void; }; export declare function createClock(tickIntervalMs: number): Clock; export declare const ClockContext: React.Context; export declare function ClockProvider({ children }: { children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ClockContext.d.ts.map