/**
 * Commander Spellbook API
 * API for Commander Spellbook, the combo database engine for Magic: The Gathering
 *
 * The version of the OpenAPI document: 5.4.10
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface TokenRefresh
 */
export interface TokenRefresh {
    /**
     *
     * @type {string}
     * @memberof TokenRefresh
     */
    readonly access: string;
}
/**
 * Check if a given object implements the TokenRefresh interface.
 */
export declare function instanceOfTokenRefresh(value: object): value is TokenRefresh;
export declare function TokenRefreshFromJSON(json: any): TokenRefresh;
export declare function TokenRefreshFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenRefresh;
export declare function TokenRefreshToJSON(json: any): TokenRefresh;
export declare function TokenRefreshToJSONTyped(value?: Omit<TokenRefresh, 'access'> | null, ignoreDiscriminator?: boolean): any;
