import { ExtractPropTypes, PropType } from 'vue'; import { ButtonSize } from '../../button'; export declare const pickerType: string[]; export declare const datePickerProps: { readonly modelValue: { readonly type: StringConstructor; readonly default: ""; }; readonly format: { readonly type: StringConstructor; readonly default: "YYYY-MM-DD"; }; readonly size: { readonly type: PropType; readonly default: "default"; }; readonly clearable: BooleanConstructor; readonly type: { readonly type: StringConstructor; readonly values: string[]; readonly default: "D"; }; readonly accurate: { readonly type: StringConstructor; }; readonly placeholder: StringConstructor; readonly readonly: { readonly type: BooleanConstructor; readonly default: true; }; readonly disabled: BooleanConstructor; }; export type DatePickerProps = ExtractPropTypes;