import { ExtractPropTypes } from 'vue'; import type TimePicker from './TimePicker.vue'; export declare const timePickerProps: { isRange: { type: BooleanConstructor; default: boolean; }; id: { type: import("vue").PropType; }; name: { type: import("vue").PropType; default: string; }; popperClass: { type: StringConstructor; default: string; }; format: { type: StringConstructor; }; valueFormat: { type: import("vue").PropType; }; type: { type: StringConstructor; default: string; }; clearable: { type: BooleanConstructor; default: boolean; }; clearIcon: { type: StringConstructor; default: string; }; editable: { type: BooleanConstructor; default: boolean; }; prefixIcon: { type: StringConstructor; default: string; }; size: { type: import("vue").PropType; }; readonly: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: boolean; }; placeholder: { type: StringConstructor; default: string; }; popperOptions: { type: import("vue").PropType>; default: () => {}; }; modelValue: { type: import("vue").PropType; default: string; }; rangeSeparator: { type: StringConstructor; default: string; }; startPlaceholder: StringConstructor; endPlaceholder: StringConstructor; defaultValue: { type: import("vue").PropType; }; defaultTime: { type: import("vue").PropType; }; 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; }; validateEvent: { type: BooleanConstructor; default: boolean; }; unlinkPanels: BooleanConstructor; }; export declare const timePickerEmits: string[]; export declare type TimePickerProps = ExtractPropTypes; export declare type TimePickerEmits = typeof timePickerEmits; export declare type TimePickerInstance = InstanceType;