export interface TimezoneSelectorProps {
    initialTimezone?: string;
    onChange: (timezone: string) => void;
}
export default function TimezoneSelect(props: TimezoneSelectorProps): import("react/jsx-runtime").JSX.Element;
