import { type ReactNode } from 'react'; export interface CalendarFooterProps { /** Children to render (buttons, keyboard hints, etc.) */ children: ReactNode; /** Additional className for styling */ className?: string; } /** * Footer container for the calendar. * Accepts children for flexible composition (buttons, keyboard hints, etc.). * * @example * * * * * */ export declare const CalendarFooter: import("react").ForwardRefExoticComponent>;