import { type ButtonProps } from '../Button'; export interface CalendarApplyButtonProps extends Omit { /** Callback fired before closing calendar */ onClick?: () => void; } /** * Apply button for the calendar footer. * Calls onClick, then closes the calendar. */ export declare const CalendarApplyButton: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;