/** * @func findTimezoneByCapitalOfCountryIso Find a timezone based on the capital * of a country ISO 3166-1 alpha-2 or alpha-3 code. * * @param {string} code Country ISO code (case insensitive) * @return {string|undefined} */ export declare const findTimezoneByCapitalOfCountryIso: (code: string) => string | undefined; /** * @func findTimezoneByCapitalOfCountryName Find a timezone based on the capital * of a country (name). * * @param {string} name Country name (case insensitive) * @return {string|undefined} */ export declare const findTimezoneByCapitalOfCountryName: (name: string) => string | undefined; /** * @func findTimezoneByCityName Find a timezone based on a city name. * * @param {string} name City name (case insensitive, utf-8 or ascii) * @return {string|undefined} */ export declare const findTimezoneByCityName: (name: string) => string | undefined; /** * @func findTimezonesByCountryIso Find timezones based on a country * ISO 3166-1 alpha-2 or alpha-3 code. * * @param {string} code Country ISO code (case insensitive) * @return {string[]} */ export declare const findTimezonesByCountryIso: (code: string) => string[]; /** * @func findTimezonesByCountryName Find timezones based on a country name. * * @param {string} name Country name (case insensitive) * @return {string[]} */ export declare const findTimezonesByCountryName: (name: string) => string[]; /** * @func getTimezones Get all timezones. * * @return {string[]} */ export declare const getTimezones: () => string[];