import { type WorkflowVerificationSuccess } from "../verification/protocol.ts"; export declare class WorkflowTestVerificationError extends Error { readonly errors: readonly string[]; constructor(message: string, errors?: readonly string[]); } export declare class WorkflowTestInfrastructureError extends Error { constructor(message: string); } /** Invoke the workflow package's reproducible verifier without resolving its dependencies in Kimchi. */ export declare function verifyWorkflowTest(options: { readonly entryPath: string; readonly testPath: string; readonly packageRoot: string; readonly signal?: AbortSignal; }): Promise; //# sourceMappingURL=workflow-test-verifier.d.ts.map