import { type StyleValue } from 'vue';
import { type CalendarProps } from '../calendar/common';
export interface CalendarPopoutProps extends CalendarProps {
    visible?: boolean;
    title?: string;
    showConfirm?: boolean;
    validateEvent?: boolean;
    popoutClass?: string;
    popoutStyle?: StyleValue;
}
export declare const defaultCalendarPopoutProps: () => {
    showConfirm: boolean;
    validateEvent: boolean;
    type: CalendarProps["type"];
    maxDays: number;
    weekStartsOn: number;
};
export interface CalendarPopoutSlots {
    default?(props: Record<string, never>): any;
    title?(props: Record<string, never>): any;
    'title-prepend'?(props: Record<string, never>): any;
}
export interface CalendarPopoutEmits {
    (e: 'update:visible', visible: boolean): void;
    (e: 'update:model-value', value: Date | Date[] | string | string[] | undefined): void;
    (e: 'change', value: Date | Date[] | string | string[] | undefined): void;
}
export interface CalendarPopoutExpose {
}
