import { OnApplicationBootstrap } from "@nestjs/common"; import { ModelService } from "../../../core/llm/services/model.service"; import { Neo4jService } from "../../../core/neo4j/services/neo4j.service"; import { GraphCatalogService } from "./graph.catalog.service"; export declare class GraphIndexManager implements OnApplicationBootstrap { private readonly neo4j; private readonly catalog; private readonly models; private readonly logger; constructor(neo4j: Neo4jService, catalog: GraphCatalogService, models: ModelService); onApplicationBootstrap(): Promise; private ensureFulltext; private ensureVector; fulltextIndexName(label: string): string; vectorIndexName(label: string): string; } //# sourceMappingURL=graph.index.manager.d.ts.map