//#region src/cli/logger.d.ts interface Colors { reset: string; red: string; green: string; yellow: string; cyan: string; dim: string; bold: string; } declare function createColors(enabled: boolean): Colors; declare const logger: { info(msg: string): void; success(msg: string): void; warn(msg: string): void; error(msg: string): void; dim(msg: string): void; }; //#endregion export { Colors, createColors, logger }; //# sourceMappingURL=logger.d.ts.map