import { DesignComponentGroupRemoteModel } from "./SDKDesignComponentGroup"; export declare class AssetGroup { id: string; persistentId: string; brandId: string; name: string; description: string; path: Array; subgroupIds: Array; isRoot: boolean; childrenIds: Array; assetIds: Array; parentGroupId: string | null; createdAt: Date | null; updatedAt: Date | null; isAssetGroup: boolean; sourceId: string | null; sourceName: string | null; sources: Array<{ id: string; name: string; }>; constructor(model: DesignComponentGroupRemoteModel); addChild(groupId: string): void; addChildren(groupsIds: Array): void; setPath(segments: Array): void; setParentGroupId(parentGroupId: string | null): void; }