///
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;
/** @deprecated Please use `disabledTime` instead. */
disabledHours?: DisabledTimes['disabledHours'];
/** @deprecated Please use `disabledTime` instead. */
disabledMinutes?: DisabledTimes['disabledMinutes'];
/** @deprecated Please use `disabledTime` instead. */
disabledSeconds?: DisabledTimes['disabledSeconds'];
disabledTime?: (date: DateType) => DisabledTimes;
};
export declare type TimePanelProps = {
format?: string;
active?: boolean;
} & PanelSharedProps & SharedTimeProps;
declare function TimePanel(props: TimePanelProps): JSX.Element;
export default TimePanel;