import { PanelMode } from 'ant-design-vue/es/vc-picker/interface';
import { Dayjs } from 'dayjs';
import { DatePickerConfig, MonthPickerConfig, TimeT, WeekPickerConfig } from '../../types';
type __VLS_Props = {
    props?: (DatePickerConfig | WeekPickerConfig | MonthPickerConfig) & {
        placeholder?: string | number;
    } & TimeT;
    type: PanelMode | 'datetime';
};
type __VLS_PublicProps = {
    'value'?: DatePickerConfig['value'] | WeekPickerConfig['value'] | MonthPickerConfig['value'] | number | string;
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    "update:value": (value: string | number | Dayjs | (Dayjs & string) | undefined) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    "onUpdate:value"?: ((value: string | number | Dayjs | (Dayjs & string) | undefined) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;
