import { LogLevel } from './log-level';
/**
 * Helper function to determine if a log message is at the appropraite
 * level to be included in the logs
 * @param myLevel
 * @param msgLevel
 */
export declare function shouldLog(myLevel: LogLevel, msgLevel: LogLevel): boolean;
