import { type CalendarProps } from '../calendar/common'; import { type DefaultProps } from '../config'; import { type FormPopoutProps } from '../popout/useFormPopout'; import type { MotionEmits } from '../motion'; export interface CalendarPopoutProps extends FormPopoutProps, CalendarProps { } export declare const defaultCalendarPopoutProps: DefaultProps; export interface CalendarPopoutSlots { default?(props: Record): any; title?(props: Record): any; 'title-prepend'?(props: Record): any; } export interface CalendarPopoutEmits extends MotionEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:modelValue', value: Date | Date[] | string | string[] | undefined): void; (e: 'change', value: Date | Date[] | string | string[] | undefined): void; (e: 'confirm', value: Date | Date[] | string | string[] | undefined): void; } export interface CalendarPopoutExpose { }