import { Badge } from './badge.model';
export interface Menu {
    id: number;
    label: string;
    idParent: number | null;
    url: string;
    code: string;
    icon?: string;
    children?: Menu[];
    isExpanded?: boolean;
    badge?: Badge;
}
//# sourceMappingURL=menu.model.d.ts.map