import type { JSX, PropsWithChildren } from 'react';
import type { MenuItemsAnimation } from '../../core/types';
export type MenuContainerProps = PropsWithChildren<{
    growContent?: boolean;
    className?: string;
    hidden?: boolean;
    animation?: MenuItemsAnimation;
}>;
export declare function MenuContainer(props: MenuContainerProps): JSX.Element;
