import type { ApiComponentInstance, ApiComponentInstances, MigrationContext, VersionMigrations } from './types'; export declare const migrationVersions: VersionMigrations; /** * Perform any necessary migrations to a component instance, if they exist for * the target version * * @param original ComponentInstance to be upgraded * @param context additional data about the context of this migration * @param targetVersion string representing target component version. E.g. 'V15' * @return updated ComponentInstance */ export declare const migrateInstance: (original: ApiComponentInstance, context: MigrationContext, targetVersion: string) => Promise;