export interface TimeZone { /** * The unique id of the timezone * * @example "America/Denver" */ id: string; /** * The human-readable name of the timezone. Combines id and offset. * * @example "America/Denver (-06:00 MDT)" */ name: string; /** * @example "-06:00 MDT" */ offset: string; } export interface AssetTimezoneContextValue { assetTimeZone: TimeZone | null; } export declare const AssetTimezoneContext: import("react").Context; /** Returns the resolved asset timezone from the nearest AssetTimezoneProvider in the component tree. */ export declare const useAssetTimezoneContext: () => AssetTimezoneContextValue;