export declare namespace config { class ConfCluster { name: string; id: string; description: string; } class ConfHTTPServer { enable: boolean; port: number; } class ConfHTTPSServer { enable: boolean; port: number; mutualTLS: boolean; } class ConfHeartbeat { enable: boolean; port: number; logger: boolean; } class ConfJsonRpcProxy { enable: boolean; port: number; mutualTLS: boolean; } class ConfNetwork { ip: string; httpServer: ConfHTTPServer; httpsServer: ConfHTTPSServer; jsonRpcProxy: ConfJsonRpcProxy; } class ConfLog { mode: string; level: string; } class YmlConfig { cluster: ConfCluster; network: ConfNetwork; heartbeat: ConfHeartbeat; log: ConfLog; custom: any; } function LoadConfig(filename?: string): void; function GetYmlConfig(): YmlConfig; }