import type { VmSize } from '..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import DatePicker from "./src/date-picker"; export declare const VDatePicker: Install, string | null>; readonly disabled: BasicType; readonly clear: BasicType; readonly size: BasicType, VmSize | null>; readonly format: BasicType, string | null>; readonly placeholder: BasicType, string | null>; readonly addZero: BasicType; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:date": (val: string) => boolean; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, string | null>; readonly disabled: BasicType; readonly clear: BasicType; readonly size: BasicType, VmSize | null>; readonly format: BasicType, string | null>; readonly placeholder: BasicType, string | null>; readonly addZero: BasicType; }>> & { "onUpdate:date"?: ((val: string) => any) | undefined; }, { readonly size: VmSize; readonly disabled: boolean; readonly date: string; readonly placeholder: string; readonly clear: boolean; readonly format: string; readonly addZero: boolean; }>>; /** date-picker 组件实例类型 */ export type DatePickerInstance = InstanceType; export * from './src/interface'; export default VDatePicker;