import type { SyncResult } from "../types/index.js"; import { getDatabase } from "../db/database.js"; export interface SyncFromDirOptions { db?: ReturnType; dryRun?: boolean; recursive?: boolean; } export declare function syncFromDir(dir: string, opts?: SyncFromDirOptions): Promise; export declare function syncToDir(dir: string, opts?: { db?: ReturnType; dryRun?: boolean; }): Promise; //# sourceMappingURL=sync-dir.d.ts.map