export interface Logger { info(msg: string): void; warn(msg: string): void; error(msg: string): void; success(msg: string): void; step(msg: string): void; raw(msg: string): void; } export interface LoggerOptions { quiet?: boolean; noColor?: boolean; } export declare function createLogger(opts?: LoggerOptions): Logger; //# sourceMappingURL=logger.d.ts.map