import { NzSafeAny } from 'ng-zorro-antd/core/types'; export interface ILayout { [key: string]: NzSafeAny; opened: boolean; } interface IBreadcrumbName { name: string; titleI18n?: string; path?: string; link?: string; } export interface IBreadcrumbI18n { titleI18n: string; name?: string; path?: string; link?: string; } export declare type IBreadcrumb = IBreadcrumbName | IBreadcrumbI18n; export interface IMenu { visible?: boolean; open?: boolean; group?: boolean; title?: string; titleI18n?: string; icon?: string; link?: string; children?: IMenu[]; selected?: boolean; badge?: number; matchRouterExact?: boolean; /** @inner Not recommended */ _id?: number; } export {};