import { type MigrationExecutor, type MigrationRunResult } from "./migrate.js"; export interface MoneySirenDbClient { dbPath: string; migrate(): Promise; } export interface MoneySirenDbClientOptions { dbPath: string; executor: MigrationExecutor; } export declare function createMoneySirenDbClient(options: MoneySirenDbClientOptions): MoneySirenDbClient; //# sourceMappingURL=client.d.ts.map