import { ReactElement } from 'react'; import { SelectProps } from '@mui/material'; import { TimeZoneOption } from './model/timeZoneOption'; export interface TimeZoneSelectorProps extends Omit { value: string; onChange?: (timeZoneOption: TimeZoneOption) => void; timeZoneOptions?: TimeZoneOption[]; variant?: 'standard' | 'compact'; heightPx?: string | number; } /** * Timezone selector component * Allows users to select a timezone from a dropdown list */ export declare function TimeZoneSelector({ value, onChange, timeZoneOptions, variant, heightPx, ...selectProps }: TimeZoneSelectorProps): ReactElement; //# sourceMappingURL=TimeZoneSelector.d.ts.map