/// import type { Props as ReactSelectProps } from 'react-select'; declare type ExcludeValue = Pick>; export declare type ICustomTimezone = { [key: string]: string; }; export declare const i18nTimezones: ICustomTimezone; export declare type ILabelStyle = 'original' | 'altName' | 'abbrev'; export declare type ITimezoneOption = { value: string; label: string; abbrev?: string; altName?: string; offset?: number; }; export declare type ITimezone = ITimezoneOption | string; interface Props extends ExcludeValue { value: ITimezone; labelStyle?: ILabelStyle; timezones?: ICustomTimezone; } declare const TimezoneSelect: ({ value, onBlur, onChange, labelStyle, timezones, ...props }: Props) => JSX.Element; export default TimezoneSelect;