import { BmbyRest } from './BmbyRest'; import { BmbyHttpResponse } from '../IBmbyHttpClient'; export declare class IdentityRest extends BmbyRest { private _autorefreshing; protected _endPoint: string; protected _tokenUri: string; private storeData; isLoggedIn(clientId: string, clientSecret: string): Promise; login(clientId: string, clientSecret: string, username: string, password: string): Promise; refereshToken(clientId: string, clientSecret: string): Promise; logout(clientId: string, clientSecret: string): Promise; }