import type { FunctionComponent, ReactNode } from 'react'; interface MenuProps { children: ReactNode; } interface MenuLabelProps { children: ReactNode; } interface MenuListProps { children: React.ReactNode; } interface MenuItemProps { active?: boolean; children: React.ReactNode; } /** @public */ export interface MenuComponent extends FunctionComponent { Label: FunctionComponent; List: FunctionComponent; Item: FunctionComponent; } export declare const Menu: MenuComponent; export {};