import { type ReactNode } from 'react'; export interface CalendarContentProps { /** Content to render inside the calendar popover */ children: ReactNode; /** Additional className for styling */ className?: string; } /** * Content container for the calendar popover. * Renders within a Portal with positioning and animation. */ export declare const CalendarContent: import("react").ForwardRefExoticComponent>;