export { tz_utc3 as tz_UTC }; export type LocalizedString = import("../runtime.js").LocalizedString; export type Tz_Utc3Inputs = {}; /** * | output | * | --- | * | "UTC" | * * @param {Tz_Utc3Inputs} inputs * @param {{ locale?: "af" | "ar" | "en" | "en-GB" | "en-US" | "en-ZA" | "es" | "es-US" | "fr" | "fr-CA" | "fr-FR" }} options * @returns {LocalizedString} */ declare const tz_utc3: ((inputs?: Tz_Utc3Inputs, options?: { locale?: "af" | "ar" | "en" | "en-GB" | "en-US" | "en-ZA" | "es" | "es-US" | "fr" | "fr-CA" | "fr-FR"; }) => LocalizedString) & import("../runtime.js").MessageMetadata;