import { Parameter, LogConfigurationMode } from "./../index";
export interface LogFileConfigurationInterface {
    debugMode?: LogConfigurationMode;
    log4j2Xml?: string;
    updateXml?: boolean;
}
export declare class LogFileConfiguration implements LogFileConfigurationInterface, Parameter {
    debugMode?: LogConfigurationMode;
    log4j2Xml?: string;
    updateXml?: boolean;
    constructor(data: any);
    static getDebugModeDefault(): LogConfigurationMode;
    static getDebugModeDescription(): string;
    static getLog4j2XmlDefault(): string;
    static getLog4j2XmlDescription(): string;
    static getUpdateXmlDefault(): boolean;
    static getUpdateXmlDescription(): string;
    static fromJson(data: any): LogFileConfiguration;
    toJson(): any;
    clone(): LogFileConfiguration;
}
