import { PipeworkError, NotFoundError, UnauthorizedError, ForbiddenError, ValidationError, ConflictError } from './index.js'; /** Standard error classes — all extend PipeworkError with structured error codes and actionable messages. */ export declare const errors: { /** Base error class with code, statusCode, and suggestion fields. */ Base: typeof PipeworkError; /** 404 — resource not found. */ NotFound: typeof NotFoundError; /** 401 — missing or invalid authentication. */ Unauthorized: typeof UnauthorizedError; /** 403 — authenticated but insufficient permissions. */ Forbidden: typeof ForbiddenError; /** 422 — input validation failed, carries field-level details. */ Validation: typeof ValidationError; /** 409 — resource state conflict (duplicate, version mismatch). */ Conflict: typeof ConflictError; }; //# sourceMappingURL=namespace.d.ts.map