import { getDatabase } from "../db/database.js"; export type ImportConflict = "skip" | "overwrite" | "version"; export interface ImportOptions { conflict?: ImportConflict; db?: ReturnType; } export interface ImportResult { created: number; updated: number; skipped: number; errors: string[]; } export declare function importConfigs(bundlePath: string, opts?: ImportOptions): Promise; //# sourceMappingURL=import.d.ts.map