import * as React from 'react'; import { BoxProps } from '../Box'; import { RoverInitialState, RoverStateReturn } from '../Rover'; export declare type LocalMenuProps = { baseId?: RoverInitialState['baseId']; }; export declare type MenuProps = BoxProps & LocalMenuProps; export declare const MenuContext: React.Context<{ rover: Partial; overrides: any; }>; export declare const Menu: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };