import type { IRequestProps, ITransport } from './transport';
import { OAuthSession } from './oauthSession';
import type { IApiSettings } from './apiSettings';
export declare class BrowserSession extends OAuthSession {
    settings: IApiSettings;
    constructor(settings: IApiSettings, transport?: ITransport);
    authenticate(props: IRequestProps): Promise<IRequestProps>;
}
