import { CoreModuleOptions } from '../models/core-module-options';
export declare class Configuration {
    private useCharset;
    private useAuthorizationType;
    private useAccessToken;
    private useRefreshToken;
    private useCSRFToken;
    private useLocale;
    private useLanguages;
    libraries: string[];
    loginURL: string;
    refreshLoginURL: string;
    allowRefreshToken: boolean;
    apiUrl: string;
    nbRetryOnNetworkError: number;
    contentSecurityPolicyActivated: boolean;
    constructor(options: CoreModuleOptions);
    locale: string;
    languages: string[];
    charset: string;
    authorizationType: string;
    refreshToken: string;
    accessToken: string;
    CSRFToken: string;
    private setDefaultLocale;
}
