import { SessionIdentityOptions, SessionLifetime, SessionOptions } from "./types";
export declare class BloombergSession {
    readonly name: string;
    readonly lifetime: SessionLifetime;
    readonly options: SessionOptions | undefined;
    readonly identityOptions: SessionIdentityOptions | undefined;
    constructor(name: string, lifetime: SessionLifetime, options: SessionOptions | undefined, identityOptions: SessionIdentityOptions | undefined);
}
