/** * Custom styles for the menu component * Edit this file to customize the appearance */ export interface MenuClasses { container: string; item: { default: string; active: string; disabled: string; }; submenu: { container: string; item: string; }; separator: string; icon: string; label: string; badge: string; } export declare const defaultClasses: MenuClasses;