declare module "@bigbinary/neeto-time-zones" { export interface TimezoneObject { utc: string[]; main: string; label: string; keywords: string; isDst: boolean; cities: string; } export interface NeetoTimezoneSelectorProps { className?: string; elementId?: string; initialValue?: string; position?: "top" | "bottom"; disabled?: boolean; onChange?: (timezone: TimezoneObject) => void; onHourFormatChange?: (timeFormat: string) => void; isTimeFormat24H?: boolean; isTimeFormatSwitchVisible?: boolean; } export class NeetoTimezoneSelector { constructor(node: HTMLElement, props: NeetoTimezoneSelectorProps); } export function initTranslations(): Promise; export function ianaTimezoneToHumanReadable(timezone: string): string; export function isValidTimezone(timezone: string): boolean; export function getBrowserTimezone(): string; export function getTimezoneObject(timezone: string): TimezoneObject | undefined; }