import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface CalendarControlsProps extends Omit, 'onClick'> { /** * Disable the next controller if true. */ disableOnNext?: boolean; /** * Disable the double next controller if true. */ disableOnDoubleNext?: boolean; /** * Disable the prev controller if true. */ disableOnPrev?: boolean; /** * Disable the double prev controller if true. */ disableOnDoublePrev?: boolean; /** * Click handler for next controller. */ onNext?: VoidFunction; /** * Click handler for double next controller. */ onDoubleNext?: VoidFunction; /** * Click handler for prev controller. */ onPrev?: VoidFunction; /** * Click handler for double prev controller. */ onDoublePrev?: VoidFunction; } /** * The react component for `mezzanine` calendar controls. * You may use it to compose your own calendar. */ declare function CalendarControls(props: CalendarControlsProps): import("react/jsx-runtime").JSX.Element; export default CalendarControls;