import React from 'react'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface MenuProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { children?: React.ReactNode; contained?: boolean; getRef?: GetRef; id?: string; nav?: boolean; modern?: boolean; variant?: 'tight' | 'loose' | 'tightest'; } export declare function Menu({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, contained, getRef, id, margin, nav, modern, variant, ...rest }: MenuProps): React.JSX.Element; export {};