import { IAuthentication } from "./auth";
export declare class Configuration {
    selfHost: boolean;
    authentication: IAuthentication;
    appSID: string;
    appKey: string;
    baseUrl: string;
    debugMode: boolean;
    constructor(selfHost: boolean, appSID: string, appKey: string, baseUrl?: string, debugMode?: boolean);
    getApiBaseUrl(): string;
}
