import type { InputStatus } from '@antdv/ui/es/types'; import type { ExtractPropTypes } from 'vue'; export declare function commonTimePickerProps(): { format: StringConstructor; showNow: { type: BooleanConstructor; default: boolean; }; showHour: { type: BooleanConstructor; default: boolean; }; showMinute: { type: BooleanConstructor; default: boolean; }; showSecond: { type: BooleanConstructor; default: boolean; }; use12Hours: { type: BooleanConstructor; default: boolean; }; hourStep: NumberConstructor; minuteStep: NumberConstructor; secondStep: NumberConstructor; hideDisabledOptions: { type: BooleanConstructor; default: boolean; }; popupClassName: StringConstructor; status: { type: import("vue").PropType; default: InputStatus; }; }; export type CommonTimePickerProps = Partial>>;