/** * The type of token to revoke. Possible values are: ``access_token`` and ``refresh_token``. * @export * @enum {string} */ export declare const TokenTypeHint: { readonly AccessToken: "access_token"; readonly RefreshToken: "refresh_token"; }; export type TokenTypeHint = typeof TokenTypeHint[keyof typeof TokenTypeHint];