import { ConfigType, RuntimeConfigType } from '../types/CommonTypes'; export declare class ConfigHelper { /** * Creates a runtime configuration object from the provided configuration object. * * @param config The configuration object to create the runtime configuration object from. * @returns The runtime configuration object. */ static createRuntimeConfig(config: ConfigType): RuntimeConfigType; private static isLoggingEnabled; }