interface SchemaManifestItem { ipfsCid: string; type: 'class' | 'relationship' | 'dataGroup'; } export interface SchemaManifest { [key: string]: SchemaManifestItem; } export declare class SchemaManifestService { private schemaManifest; private readonly schemaManifestUrl; loadSchemaManifest(): Promise; /** * Get the CID for a datagroup by its label * @param label The label of the datagroup * @returns The CID of the datagroup or null if not found */ getDataGroupCidByLabel(label: string): string | null; /** * Check if a data object is a datagroup root file by its structure * @param data The data object to check * @returns True if it matches the datagroup structure */ static isDataGroupRootFile(data: any): boolean; } export {}; //# sourceMappingURL=schema-manifest.service.d.ts.map