/** * Minimal neo4j driver wrapper for the voice-mirror MCP server. * * Mirrors the public surface of `platform/plugins/memory/mcp/src/lib/neo4j.ts`: * `getSession()` returns a session, `closeDriver()` releases the singleton. * Password resolution follows the same `PLATFORM_ROOT/config/.neo4j-password` * convention, with an explicit `NEO4J_URI` requirement to avoid silent * cross-account orphaning. */ import { Driver, Session } from "neo4j-driver"; export declare function getDriver(): Driver; export declare function getSession(): Session; export declare function closeDriver(): Promise; //# sourceMappingURL=neo4j.d.ts.map