import { type ReactNode } from 'react'; export interface CalendarFooterControlsProps { /** Children to render (typically Reset and Apply buttons) */ children: ReactNode; /** Additional className for styling */ className?: string; } /** * Container for footer action buttons. * Positions buttons to the right with consistent spacing. */ export declare const CalendarFooterControls: import("react").ForwardRefExoticComponent>;