import { type Db } from 'agent-common'; export type { Db } from 'agent-common'; export interface DbOptions { /** Use ':memory:' for tests, or a file path. Defaults to ~/.agent-comm/agent-comm.db */ path?: string; /** Enable verbose logging to stderr */ verbose?: boolean; } export declare function createDb(options?: DbOptions): Db; //# sourceMappingURL=database.d.ts.map