import type { VerifyOptions } from './migration-command-surface.js'; /** * Run deterministic migration verification against generated fixtures. * * @param projectDir Absolute or relative project directory containing the migration workspace. * @param options Verification scope and console rendering options. * @returns Verified legacy versions. */ export declare function verifyProjectMigrations(projectDir: string, { all, fromMigrationVersion, renderLine }?: VerifyOptions): { verifiedVersions: string[]; }; /** * Validate the migration workspace without mutating files. * * @param projectDir Absolute or relative project directory containing the migration workspace. * @param options Doctor scope and console rendering options. * @returns Structured doctor check results for the selected legacy versions. */ export declare function doctorProjectMigrations(projectDir: string, { all, fromMigrationVersion, renderLine }?: VerifyOptions): { checkedVersions: string[]; checks: { detail: string; label: string; status: 'fail' | 'pass'; }[]; };