import { ExtractPropTypes, PropType } from 'vue'; import type { ComponentSize } from '../../../../hooks'; import type CommonPicker from './CommonPicker.vue'; export declare type FormatType = 'date' | 'dates' | 'week' | 'year' | 'month' | 'datetime' | 'monthrange' | 'daterange' | 'datetimerange'; export declare type PickerSize = ComponentSize; export declare type PickerModelValue = number | string | Date | (number | string | Date)[]; export declare const commonPickerProps: { id: { type: PropType; }; name: { type: PropType; default: string; }; popperClass: { type: StringConstructor; default: string; }; format: { type: StringConstructor; }; valueFormat: { type: 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: PropType; }; readonly: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: boolean; }; placeholder: { type: StringConstructor; default: string; }; popperOptions: { type: PropType>; default: () => {}; }; modelValue: { type: PropType; default: string; }; rangeSeparator: { type: StringConstructor; default: string; }; startPlaceholder: StringConstructor; endPlaceholder: StringConstructor; 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; }; validateEvent: { type: BooleanConstructor; default: boolean; }; unlinkPanels: BooleanConstructor; }; export declare const commonPickerEmits: string[]; export declare type CommonPickerProps = ExtractPropTypes; export declare type CommonPickerEmits = typeof commonPickerEmits; export declare type CommonPickerInstance = InstanceType;