import { FC } from 'react'; import { Dayjs } from 'dayjs'; import { ShortcutItem } from '../shared/shortcuts-panel/shortcuts-panel'; import { TimeFormat } from '../utils/format-utils'; export type { ShortcutItem }; export interface TimePickerProps { value: Dayjs | null; onChange: (time: Dayjs | null) => void; timeFormat?: TimeFormat; format?: string; placeholder?: string; shortcuts?: ShortcutItem[]; defaultDate?: Dayjs; className?: string; } export declare const TimePicker: FC;