import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export declare const TokenTypeHint: { readonly AccessToken: "access_token"; readonly RefreshToken: "refresh_token"; }; export type TokenTypeHint = ClosedEnum; export type RevokeTokenRequest = { token: string; tokenTypeHint?: TokenTypeHint | null | undefined; clientId: string; clientSecret: string; }; /** @internal */ export declare const TokenTypeHint$outboundSchema: z.ZodMiniEnum; /** @internal */ export type RevokeTokenRequest$Outbound = { token: string; token_type_hint?: string | null | undefined; client_id: string; client_secret: string; }; /** @internal */ export declare const RevokeTokenRequest$outboundSchema: z.ZodMiniType; export declare function revokeTokenRequestToJSON(revokeTokenRequest: RevokeTokenRequest): string; //# sourceMappingURL=revoketokenrequest.d.ts.map