import { Props } from './types';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
type __VLS_Props = Props;
type __VLS_PublicProps = {
    modelValue?: string;
} & __VLS_Props;
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
    "update:modelValue": (value: string) => any;
} & {
    cancel: () => any;
    sure: (arr: number[]) => any;
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    onCancel?: (() => any) | undefined;
    "onUpdate:modelValue"?: ((value: string) => any) | undefined;
    onSure?: ((arr: number[]) => any) | undefined;
}>, {
    type: "date" | "year-month" | "month-day" | "time" | "datetime";
    visible: boolean;
    minDate: Date;
    maxDate: Date;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;
