import LMChatClient from 'src';
import { SdkConfig } from './shared/types';
import NetworkLibrary from './core/services/networklibrary';
export declare class Base {
    xApiKey: string;
    xPlatformCode: string;
    xVersionCode: number;
    xSdkSource: string;
    networkLibrary: NetworkLibrary;
    constructor(sdkConfig: SdkConfig);
}
export declare class SDKBuilder {
    xApiKey: string;
    xPlatformCode: string;
    xVersionCode: number;
    xSdkSource: string;
    setApiKey(xapikey: string): SDKBuilder;
    setPlatformCode(xplatformcode: string): SDKBuilder;
    setVersionCode(xversioncode: number): SDKBuilder;
    build(): LMChatClient;
}
