import { Serializable } from "../../interfaces/serializable"; export interface TokenSetJson { access_token: string; id_token: string; refresh_token: string; scope: string; token_type: string; expires_in: number; created_at: number; } export declare class TokenSet implements Serializable { access_token: string; id_token: string; refresh_token: string; scope: string; token_type: string; created_at: number; expires_in: number; constructor(grantResponse: TokenSetJson); expired(): boolean; toJson(): TokenSetJson; }