import * as React from 'react'; import { Creatable } from '../generic'; import { MenuProps } from './Menu.types'; import MenuItem from './MenuItem'; export declare type MenuChildren = { Item: typeof MenuItem; }; declare const Menu: Creatable> & MenuChildren; export default Menu;