import { ILogger } from '../schemas'; export declare class Logger implements ILogger { log(id: string, output: string, source: string): Promise; info(id: string, output: string, source: string): Promise; warn(id: string, output: string, source: string): Promise; error(id: string, output: string, source: string): Promise; debug(id: string, output: string, source: string): Promise; dir(id: string, output: any, source: string): Promise; }