import type { VerificationConfig, VerificationResult } from "../types/index.js"; export type VerificationRunResult = { passed: boolean; results: VerificationResult[]; failedCommand?: string; }; export declare const runVerification: (config: VerificationConfig, cwd?: string) => Promise; export declare const formatVerificationSummary: (result: VerificationRunResult) => string; //# sourceMappingURL=verification.d.ts.map