import React from 'react'; import { MenuItemFunc, MenuItemType } from '../MenuItem/MenuItem'; interface ListProps { id?: string; children: React.ReactNode; title: React.ReactNode; 'aria-current'?: boolean; } interface MenuBarProps { id?: string; children: React.ReactNode; 'aria-label'?: string; variant?: MenuBarVariants; } export declare type MenuBarVariants = 'light' | 'dark'; declare const MenuBarItem: typeof MenuItemFunc; declare const MenuBarList: React.ForwardRefExoticComponent>; declare const MenuBar: React.ForwardRefExoticComponent>; declare type ExportedMenuBarType = typeof MenuBar & { List: typeof MenuBarList; Item: MenuItemType; }; declare const TypedMenuBar: ExportedMenuBarType; export { TypedMenuBar as MenuBar, MenuBarList, MenuBarItem }; export default TypedMenuBar;