import type { MigrationApplyResult, MigrationPlan } from "../../plugins/types.js"; import type { RuntimeEnv } from "../../runtime.js"; import type { MigrateApplyOptions } from "./types.js"; export declare function formatMigrationPreview(plan: MigrationPlan): string[]; export declare function formatMigrationResult(plan: MigrationPlan): string[]; export declare const MIGRATION_CONFLICT_REASON_PHRASES: Record; export declare function assertConflictFreePlan(plan: MigrationPlan, providerId: string): void; export declare function writeApplyResult(runtime: RuntimeEnv, opts: MigrateApplyOptions, result: MigrationApplyResult): void; export declare function assertApplySucceeded(result: MigrationApplyResult): void;