import { ReactChild } from 'react'; export interface UTCNowContextValues { UTCNow: number; clockDrift: number | undefined; } export declare function UTCNowProvider({ children }: { children: ReactChild; }): JSX.Element; export declare function useUTCNow(): UTCNowContextValues;