import { AuthSession } from './authSession';
import type { IRequestProps, ITransport } from './transport';
import type { IApiSettings } from './apiSettings';
export declare abstract class ProxySession extends AuthSession {
    settings: IApiSettings;
    proxyUrl: string;
    constructor(settings: IApiSettings, proxyUrl: string, transport?: ITransport);
    isAuthenticated(): boolean;
    authenticate(props: IRequestProps): Promise<IRequestProps>;
}
