import { DatetimePickerProps } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = DatetimePickerProps; type __VLS_ModelProps = { modelValue?: string | [string, string]; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { clear: (e: Event) => any; change: (value: string | [string, string]) => any; "update:modelValue": (value: string | [string, string]) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClear?: ((e: Event) => any) | undefined; onChange?: ((value: string | [string, string]) => any) | undefined; "onUpdate:modelValue"?: ((value: string | [string, string]) => any) | undefined; }>, { type: "datetime" | "datetime-range" | "time"; size: "mini" | "small" | "medium" | "large"; textMode: boolean; textSeparator: string; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;