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