/**
 * This module provides a way to read runtime configuration passed by means of global object.
 * This is useful in case the configuration is not available at compile time, such as log verbosity.
 */
export type RuntimeConfig = {
    logVerbosityLevel: number;
};
export declare function getRuntimeConfig(): RuntimeConfig;
//# sourceMappingURL=runtime-config.d.ts.map