import { IAttributes } from "./IAttributes"; import { IBase } from "./IBase"; import { IAsset } from "./ISection"; export interface INav extends IBase { active?: boolean; assets?: IAsset; attributes?: IAttributes; buttons?: any; elements?: any; groupId?: string; order?: string; parent?:string; tag?: string; }