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"; onChange?: (timezone: TimezoneObject) => void; onHourFormatChange?: (timeFormat: string) => void; } export default function NeetoTimezoneSelector( props: NeetoTimezoneSelectorProps );