import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface CalendarFooterControlProps extends Omit, 'onClick'> { /** * The name of children content. */ children?: string; /** * The onClick handler for button */ onClick?: VoidFunction; } /** * The react component for `mezzanine` calendar footer control. */ declare function CalendarFooterControl(props: CalendarFooterControlProps): import("react/jsx-runtime").JSX.Element; export default CalendarFooterControl;