import type { SqliteDatabase } from '../db/adapter.js'; export interface ExportOptions { workspace: string; output?: string; } export interface ExportResult { workspace: string; count: number; checksum: string; output?: string; content: string; } export declare function exportWorkspace(database: SqliteDatabase, options: ExportOptions): ExportResult; export declare function writeExport(database: SqliteDatabase, options: ExportOptions & { output: string; }): Promise; //# sourceMappingURL=export.d.ts.map