export interface TokenReponseModel {
    access_token: string;
    expires_in: number;
    refresh_expires_in: string;
    refresh_token: string;
    token_type: string;
    session_state: string;
    scope: string;
}
//# sourceMappingURL=token-response-model.d.ts.map