export declare const LOG_CONFIG_DEFAULTS: { readonly LEVEL: "info"; readonly PATH: string; readonly SHOW_CONSOLE_LOGS: false; }; /** * Resolves a log path to an absolute path * @param logPath - The path to resolve * @returns Absolute path */ export declare function resolveLogPath(logPath: string): string; /** * Gets the effective log configuration with defaults applied * @param currentConfig - Current configuration from config handler * @returns Configuration with defaults applied */ export declare function getEffectiveLogConfig(currentConfig?: any): { level: any; path: string; showConsoleLogs: any; };