import * as z from "zod"; import { ProveapiError } from "./proveapierror.js"; export type Error403Data = { /** * An error code that identifies the specific authorization issue. */ code?: number | undefined; /** * The error message describing why access is forbidden. */ message: string; }; export declare class Error403 extends ProveapiError { /** * An error code that identifies the specific authorization issue. */ code?: number | undefined; /** The original data that was passed to this error instance. */ data$: Error403Data; constructor(err: Error403Data, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const Error403$inboundSchema: z.ZodType; /** @internal */ export type Error403$Outbound = { code?: number | undefined; message: string; }; /** @internal */ export declare const Error403$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Error403$ { /** @deprecated use `Error403$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Error403$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Error403$Outbound` instead. */ type Outbound = Error403$Outbound; } //# sourceMappingURL=error403.d.ts.map