import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; import { ButtonProps } from '../Button'; export interface CalendarFooterActionsProps extends Omit, 'onClick'> { actions: { secondaryButtonProps: ButtonProps; primaryButtonProps: ButtonProps; }; } /** * The react component for `mezzanine` calendar footer actions. */ declare function CalendarFooterActions(props: CalendarFooterActionsProps): import("react/jsx-runtime").JSX.Element; export default CalendarFooterActions;