/** * Simple logger with colored output for the CLI */ export declare class Logger { private indent; private writeLn; constructor(write: (msg: any) => void); info(message: string): void; success(message: string): void; warn(message: string): void; error(message: string): void; step(message: string): void; heading(message: string): void; subheading(message: string): void; list(items: string[]): void; code(text: string): string; file(path: string): string; number(value: number): string; withIndent(fn: () => T): T; private getIndent; } //# sourceMappingURL=logger.d.ts.map