import { LogLevel } from './types'; /** * Logs messages in the console with a corresponding urgency * * @param level the urgency of the message * @param message the message to log in the console */ export declare const log: (level: LogLevel, message: string) => void;