import { Translator } from '../types/HaloTypes'; import { SystemMenu } from '../types/SystemMenu'; import { MenuOption } from 'naive-ui'; export interface MenuLook { id: string; icon: string; color?: string; } export declare function findMenuById(menus: Array, menuId: string): SystemMenu | undefined; export declare const useMenus: () => { menuLooks: Record; systemMenuToNaiveMenu: (t: Translator, menus: Array | null, parentId?: string, filter?: string) => Array; };