export interface IComponentGroup extends IGroup { id: string; color: string; title: string; detail: string; components: IComp[]; } export interface IGroup { id: string; color: string; title: string; detail: string; opacity: number; } export interface IComp { dbId: number; modelId: number; } export declare class ComponentGroupUtil { static createNewComponentGroup(): IComponentGroup; static createNewGroup(): IGroup; } //# sourceMappingURL=group-component-model.d.ts.map