import { FC } from 'react'; import { AmPm } from '../../utils/format-utils'; type TimePickerPanelBaseProps = { hour: number; minute: number; onHourChange: (hour: number) => void; onMinuteChange: (minute: number) => void; className?: string; }; export type TimePickerPanelProps = TimePickerPanelBaseProps & ({ timeFormat: '12h'; amPm: AmPm; onAmPmChange: (amPm: AmPm) => void; } | { timeFormat?: '24h'; amPm?: undefined; onAmPmChange?: undefined; }); export declare const TimePickerPanel: FC; export {};