import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type RevokeTokenRequestErrorData = { token?: string | undefined; tokenTypeHint?: string | undefined; }; export declare class RevokeTokenRequestError extends MoovError { token?: string | undefined; tokenTypeHint?: string | undefined; /** The original data that was passed to this error instance. */ data$: RevokeTokenRequestErrorData; constructor(err: RevokeTokenRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const RevokeTokenRequestError$inboundSchema: z.ZodType; /** @internal */ export type RevokeTokenRequestError$Outbound = { token?: string | undefined; token_type_hint?: string | undefined; }; /** @internal */ export declare const RevokeTokenRequestError$outboundSchema: z.ZodType; //# sourceMappingURL=revoketokenrequesterror.d.ts.map