import { DescriptorSource } from "./graph.catalog.service"; export declare class GraphDescriptorRegistry implements DescriptorSource { private readonly logger; private readonly entries; private logged; /** * Register a feature-module's descriptor with the chatbot graph catalog. * * `moduleId` must be the stable UUID of the `(Module)` node seeded in the * host app's Neo4j migrations. Matching the ID — not the name — means the * catalog continues to work after module renames and is decoupled from the * host app's naming conventions. */ register(params: { descriptor: any; moduleId: string; }): void; loadAll(): any[]; } //# sourceMappingURL=descriptor.source.d.ts.map