export interface RefreshTokenModel {
    aud: string;
    azp: string;
    iat: number;
    iss: string;
    jti: string;
    sub: string;
    typ: string;
    session_state: string;
    scope: string;
}
//# sourceMappingURL=refresh-token-model.d.ts.map