import { ILogger } from './index.js'; export declare class ConsoleLogger implements ILogger { constructor(); info(info: string): Promise; notice(msg: string): Promise; success(msg: string): Promise; warning(msg: string): Promise; error(msg: string): Promise; }