import type { WorkflowVerificationSuccess } from "./protocol.ts"; export declare class WorkflowAuthoredVerificationError extends Error { readonly errors: readonly string[]; constructor(message: string, errors?: readonly string[]); } export declare class WorkflowVerificationInfrastructureError extends Error { constructor(message: string); } /** Type-check and execute exactly one workflow test using its package-owned dependencies. */ export declare function verifyWorkflowPackage(options: { readonly entryPath: string; readonly testPath: string; readonly packageRoot: string; readonly signal?: AbortSignal; }): Promise; //# sourceMappingURL=verify.d.ts.map