import { DateView } from '@zag-js/date-picker';
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory.js';
export interface DatePickerViewBaseProps extends PolymorphicProps {
}
export interface DatePickerViewProps extends DatePickerViewBaseProps, 
/**
 * @vue-ignore
 */
HTMLAttributes {
    view: DateView;
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<DatePickerViewProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DatePickerViewProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
    default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
