import { default as dayjs, Dayjs } from 'dayjs';
declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: {
        'date-cell'?(_: {
            data: {
                isSelected: boolean;
                type: string;
                day: string;
                date: Date;
            };
        }): any;
    };
    refs: {};
    rootEl: HTMLTableElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    readonly selectedDay: {
        readonly type: import('vue').PropType<Dayjs>;
    };
    readonly date: {
        readonly type: import('vue').PropType<Dayjs>;
        readonly required: true;
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    pick: (value: dayjs.Dayjs) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    readonly selectedDay: {
        readonly type: import('vue').PropType<Dayjs>;
    };
    readonly date: {
        readonly type: import('vue').PropType<Dayjs>;
        readonly required: true;
    };
}>> & Readonly<{
    onPick?: ((value: dayjs.Dayjs) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLTableElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
