/** * Custom styles for the left-menu component * Edit this file to customize the appearance */ export interface LeftMenuClasses { container: string; template: string; items: { parent: string; chevron: string; label: string; separator: string; link: string; icon: string; badge: string; shortcut: string; }; nested: { separator: string; link: string; icon: string; label: string; badge: string; shortcut: string; }; } export declare const CLASSES: LeftMenuClasses;