import type { Config } from '../config/schema'; export type VerifyResult = { ok: boolean; results: Array<{ name: string; exitCode: number; stdout: string; stderr: string; }>; }; export declare function runVerifyCommands(config: Config, options?: { names?: string[]; cwd?: string; }): Promise;