/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const TokenTypeHint: { readonly access_token: "access_token"; readonly refresh_token: "refresh_token"; }; export type TokenTypeHint = typeof TokenTypeHint[keyof typeof TokenTypeHint]; export declare function instanceOfTokenTypeHint(value: any): boolean; export declare function TokenTypeHintFromJSON(json: any): TokenTypeHint; export declare function TokenTypeHintFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenTypeHint; export declare function TokenTypeHintToJSON(value?: TokenTypeHint | null): any; export declare function TokenTypeHintToJSONTyped(value: any, ignoreDiscriminator: boolean): TokenTypeHint;