/// import type { Dayjs } from 'dayjs'; import type { PickerTimeProps, RangePickerTimeProps } from '../DatePicker/Generate/Generate.types'; export interface TimePickerLocale { placeholder?: string; rangePlaceholder?: [string, string]; } export interface TimeRangePickerProps extends Omit, 'picker'> { popupClassNames?: string; } export interface TimePickerProps extends Omit, 'picker'> { addon?: () => React.ReactNode; popupClassNames?: string; }