import type Database from "better-sqlite3"; type LogLevel = "info" | "warn"; export interface LegacyWorkflowImportOptions { legacyDirectory?: string; legacyRunsDirectory?: string; reportPath?: string; now?: () => string; log?: (level: LogLevel, message: string) => void; } export interface LegacyWorkflowImportResult { imported: number; failed: number; skipped: boolean; } export declare function importLegacyWorkflowDefinitions(db: Database.Database, options?: LegacyWorkflowImportOptions): LegacyWorkflowImportResult; export {}; //# sourceMappingURL=import-v1.d.ts.map