import { MigrationExecutorError } from './errors.js'; import type { CommandInvocation, CommandResult, MigrationCommandRunner } from './types.js'; /** * Default argv-only command runner. The executable and arguments are never * interpreted by a shell; the executor chooses the Drizzle executable and * fixed generate arguments rather than accepting a remote command string. */ export declare const runMigrationCommand: MigrationCommandRunner; export declare function formatCommandFailure(invocation: CommandInvocation, result: CommandResult): MigrationExecutorError; //# sourceMappingURL=command-runner.d.ts.map