import type { WorkflowIR } from './ir'; /** Validation failure for the unified workflow representation. */ export declare class WorkflowValidationError extends Error { readonly workflowId: string; constructor(message: string, workflowId: string); } /** Validate node identity, references, entry, DAG shape, and branch fallbacks. */ export declare function validateWorkflowIR(ir: WorkflowIR): void; //# sourceMappingURL=validate.d.ts.map