import { Static } from "@sinclair/typebox"; /** * Revocation request. * * @see [Revocation Request - OAuth 2.0 Token Revocation (RFC 7009)](https://www.rfc-editor.org/rfc/rfc7009#section-2.1) */ export declare const revocation_request_body: import("@sinclair/typebox").TObject<{ revocation_reason: import("@sinclair/typebox").TOptional; /** * The token to revoke. It may be an access token or a refresh token. It may * different from the access token used to authorize the request. */ token: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TString]>; token_type_hint: import("@sinclair/typebox").TOptional, import("@sinclair/typebox").TLiteral<"refresh_token">]>>; }>; export type RevocationRequestBody = Static; //# sourceMappingURL=requests.d.ts.map