export declare class Configuration {
    FIleLocations: {
        TempDirectory: {
            Path: string;
            UseLocalTemp: boolean;
        };
        DataSetDirectory: any;
        ImportDirectory: any;
        ExportDirectory: any;
        DDIDirectory: any;
    };
    Publishing: {
        ProxySettings: {
            Http: any;
            Socks: any;
        };
        RememberSelectedCatalogs: boolean;
    };
    GlobalVariableRepository: {
        Path: string;
        DontUse: boolean;
    };
    SharedProjects: {
        Path: string;
        DontUse: boolean;
    };
    ToolsMenu: [{
        Label: string;
        CommandLine: string;
    }];
    DDIExport: {
        ValidateRelation: boolean;
    };
    DelimitedTextExport: {
        ExportVariableName: boolean;
        ExportVariableLabels: boolean;
    };
    CSVExport: {
        ExportVariableName: boolean;
        ExportVariableLabels: boolean;
        Delimeter: string;
    };
}
