import { Component, ReactNode } from 'react';
type TCalendarMenu = {
    children: ReactNode;
    hasFooter?: boolean;
    hasError?: boolean;
    hasWarning?: boolean;
    footer?: ReactNode;
    /**
     * Indicates the appearance of the calendar menu.
     * Filter appearance removes box shadows and positioning for inline display.
     */
    appearance?: 'default' | 'filter';
};
export default class CalendarMenu extends Component<TCalendarMenu> {
    static displayName: string;
    render(): import("@emotion/react/jsx-runtime").JSX.Element;
}
export {};
