export type LogLevel = 'info' | 'warn' | 'error'; export interface Logger { info(msg: string): void; warn(msg: string): void; error(msg: string): void; child(prefix: string): Logger; } export declare function createLogger(prefix?: string, logFile?: string): Logger; //# sourceMappingURL=logger.d.ts.map