export interface TimeZone {
    name: string;
    tz: string;
    offset: string;
    offsetDST: string;
}
export declare const SupportedTimeZones: TimeZone[];
