/// import type { PanelSharedProps, DisabledTimes } from '../../interface'; export declare type SharedTimeProps = { format?: string; showNow?: boolean; showHour?: boolean; showMinute?: boolean; showSecond?: boolean; use12Hours?: boolean; hourStep?: number; minuteStep?: number; secondStep?: number; hideDisabledOptions?: boolean; defaultValue?: DateType; } & DisabledTimes; export declare type TimePanelProps = { format?: string; active?: boolean; } & PanelSharedProps & SharedTimeProps; declare function TimePanel(props: TimePanelProps): JSX.Element; export default TimePanel;