import { Schema } from 'effect'; declare const WorkflowNodeExecutionError_base: Schema.TaggedErrorClass; } & { workflowId: typeof Schema.String; nodeId: typeof Schema.String; message: typeof Schema.String; cause: typeof Schema.Unknown; /** Whether a source-level retry boundary may safely rerun this failure. */ retryable: Schema.optional; }>; /** A specific node failed while executing a compiled workflow. */ export declare class WorkflowNodeExecutionError extends WorkflowNodeExecutionError_base { } declare const WorkflowInputValidationError_base: Schema.TaggedErrorClass; } & { workflowId: typeof Schema.String; message: typeof Schema.String; /** Paths only: diagnostics never retain or expose the rejected value. */ issues: Schema.Array$; }>; /** Raised before workflow execution when public input does not match its Schema. */ export declare class WorkflowInputValidationError extends WorkflowInputValidationError_base { } declare const WorkflowOutputValidationError_base: Schema.TaggedErrorClass; } & { workflowId: typeof Schema.String; message: typeof Schema.String; /** Paths only: diagnostics never retain or expose the rejected value. */ issues: Schema.Array$; }>; /** Raised after successful execution when the public output does not match its Schema. */ export declare class WorkflowOutputValidationError extends WorkflowOutputValidationError_base { } export {}; //# sourceMappingURL=errors.d.ts.map