import { Variant } from 'framer-motion'; import { BoxProps } from '../../Box'; export declare type MenuSize = 'small' | 'large'; export interface MenuProps extends Pick { /** * The `animation` prop allows you to define the animation for each of the 4 animation states. */ animation?: { animate: Variant; exit: Variant; initial: Variant; } | null; /** * The `size` prop determines the padding and default width of the menu. */ size?: MenuSize; } export declare const Menu: ({ animation, children, tx, size, ...restOfProps }: MenuProps) => JSX.Element;