/**
 * Get a list of supported IANA timezone IDs (e.g. "Europe/Berlin") with human-readable labels,
 * excluding Etc/* administrative zones not used by users (see: https://en.wikipedia.org/wiki/Tz_database#Areas)
 */
export declare function getTimezones(): {
    timezoneId: string;
    label: string;
}[];
