import type { Options } from '@popperjs/core'; export declare const timePickerDefaultProps: { id: { type: PropType; }; name: { type: PropType; default: string; }; popperClass: { type: StringConstructor; default: string; }; format: { type: StringConstructor; }; valueFormat: { type: PropType; default: string; }; type: { type: PropType<"year" | "month" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange">; default: string; }; clearable: { type: BooleanConstructor; default: boolean; }; clearIcon: { type: PropType; default: DefineComponent; }; editable: { type: BooleanConstructor; default: boolean; }; prefixIcon: { type: PropType; default: string; }; size: { type: PropType<"default" | "small" | "large">; validator: (val: string) => val is "" | "default" | "small" | "large"; }; readonly: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: undefined; }; placeholder: { type: StringConstructor; default: string; }; popperOptions: { type: PropType>; default: () => {}; }; modelValue: { type: PropType; default: string; }; rangeSeparator: { type: StringConstructor; default: string; }; startPlaceholder: { type: StringConstructor; default: string; }; endPlaceholder: { type: StringConstructor; default: string; }; defaultValue: { type: PropType; }; defaultTime: { type: PropType; }; isRange: { type: BooleanConstructor; default: boolean; }; disabledHours: { type: FunctionConstructor; }; disabledMinutes: { type: FunctionConstructor; }; disabledSeconds: { type: FunctionConstructor; }; disabledDate: { type: FunctionConstructor; }; cellClassName: { type: FunctionConstructor; }; shortcuts: { type: ArrayConstructor; default: () => never[]; }; arrowControl: { type: BooleanConstructor; default: boolean; }; unlinkPanels: BooleanConstructor; start: { type: PropType; }; end: { type: PropType; }; label: { type: StringConstructor; }; field: { type: StringConstructor; }; tips: { type: StringConstructor; }; span: { type: PropType; }; required: { type: BooleanConstructor; }; };