import * as z from "zod/v4-mini"; import { ErrorCode } from "./error-code.js"; import { FlexPriceError } from "./flex-price-error.js"; export type ErrorsErrorResponseData = { code?: ErrorCode | undefined; httpStatusCode?: number | undefined; message?: string | undefined; }; export declare class ErrorsErrorResponse extends FlexPriceError { code?: ErrorCode | undefined; httpStatusCode?: number | undefined; /** The original data that was passed to this error instance. */ data$: ErrorsErrorResponseData; constructor(err: ErrorsErrorResponseData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ErrorsErrorResponse$inboundSchema: z.ZodMiniType; //# sourceMappingURL=errors-error-response.d.ts.map