import type { Value } from "../RelativeDatePicker/index.js"; import type { ExtractFunctionType, RangeValue } from "../types/index.js"; import type { Preset } from "./components/Presets/defaultPresets.js"; import { i18n } from "./components/Presets/i18n/index.js"; export declare function resolveTimeZone(timeZone: string): string; export declare function normalizeTimeZone(timeZone: string): string; export declare function getTimeZoneOffset(timeZone: string): string; interface GetDefaultTitleArgs { value: RangeValue | null; timeZone: string; alwaysShowAsAbsolute?: boolean; format?: string; presets?: Preset[]; presetsTranslations?: ExtractFunctionType; lang?: string; } export declare function getDefaultTitle({ value, timeZone, alwaysShowAsAbsolute, format, presets, presetsTranslations, lang, }: GetDefaultTitleArgs): string; export {};