import { FC } from 'react'; import { SelectInputProps } from '../SelectInput/SelectInput'; export declare type TimePickerProps = Omit & { /** * Options to govern the display of the option labels in the select. * This is a direct passthrough to the second argument of JS `toLocaleTimeString`. * [More](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString) */ dateDisplayOptions?: Intl.DateTimeFormatOptions; /** * End hour and minute */ endTime?: { hour: number; minute: number; }; /** * Interval of displayed times (in seconds). Defaults to 900 seconds (15 minutes). */ interval?: number; /** * Locale(s) to be passed down in order to format the label values in the select. * This corresponds to the first argument of JS `toLocaleTimeString`. * [More](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString) */ locales?: string | string[]; /** * Start hour and minute */ startTime?: { hour: number; minute: number; }; }; export declare const TimePicker: FC;