/** * Account migration operations * Migrates complete account from source to destination */ import type { AxiosInstance } from 'axios'; import type { CustomerConfig } from '../types.js'; interface MigrationOptions { sourceCustomer: CustomerConfig; destCustomer: CustomerConfig; sourceClient: AxiosInstance; destClient: AxiosInstance; verbose: boolean; } interface MigrationResult { success: boolean; projectsCreated: number; agentsCreated: number; flowsCreated: number; skillsCreated: number; attributesMigrated: number; personasCreated: number; articlesImported: number; connectorsCreated: number; webhooksCreated: number; errors: string[]; } /** * Migrate complete account from source to destination */ export declare function migrateAccount(options: MigrationOptions): Promise; export {}; //# sourceMappingURL=migrate.d.ts.map