import { FC } from 'react'; declare type Props = { timezones: { name: string; utcOffset: string; }[]; timezone?: string; disableSelection?: boolean; timezoneLabel: string; timezonePlaceholderLabel: string; emptySearchLabel: string; dropdownHeight?: number; onChange: (timezone: string) => void; }; declare const Timezone: FC; export default Timezone;