import { FC } from 'react'; import { ICategoryConfig } from '../interfaces/ICategoryConfig'; import { IMenuConfig } from '../interfaces/IMenuConfig'; export interface CategoryMenuProps { category: ICategoryConfig; menus: IMenuConfig[]; } /** * Renders an AppBar icon button that opens a popover containing a grid of * icon tiles. Each tile is a {@link DropdownMenu} for one of the supplied * `menus`, preserving its existing sub-menu behaviour. Use this together with * `IMenuConfig.category` to collapse many top-bar icons into a small number * of category containers (a "mega-menu" pattern). */ export declare const CategoryMenu: FC; export default CategoryMenu; //# sourceMappingURL=CategoryMenu.d.ts.map