import { DateTime } from 'luxon'; import { FC } from 'react'; interface TimePickerProps { /** The selected time */ value?: DateTime; /** Handler for when a time is selected */ onChange: (value: DateTime) => void; /** The format to display time in. */ timeFormat: '12h' | '24h'; } export declare const TimePicker: FC; export {};