import * as z from "zod/v3";
import { IamClientError } from "./iamclienterror.js";
export type OAuthErrorResponseData = {
    error?: string | null | undefined;
    errorDescription?: string | null | undefined;
};
export declare class OAuthErrorResponse extends IamClientError {
    error?: string | null | undefined;
    errorDescription?: string | null | undefined;
    /** The original data that was passed to this error instance. */
    data$: OAuthErrorResponseData;
    constructor(err: OAuthErrorResponseData, httpMeta: {
        response: Response;
        request: Request;
        body: string;
    });
}
/** @internal */
export declare const OAuthErrorResponse$inboundSchema: z.ZodType<OAuthErrorResponse, z.ZodTypeDef, unknown>;
//# sourceMappingURL=oautherrorresponse.d.ts.map