import React, { ReactElement } from 'react'; export declare const TimeZoneContext: React.Context; export interface TimeZoneProviderProps { timeZone?: string; children?: React.ReactNode; } export declare function TimeZoneProvider(props: TimeZoneProviderProps): ReactElement; export declare function useTimeZone(): { timeZone: string; formatWithUserTimeZone: (date: Date, formatString: string) => string; dateFormatOptionsWithUserTimeZone: (dateFormatOptions: Intl.DateTimeFormatOptions) => Intl.DateTimeFormatOptions; }; //# sourceMappingURL=TimeZoneProvider.d.ts.map