/** CLI output helpers + ANSI colours, shared by run.ts and publish.ts. */ export declare const GREEN = "\u001B[32m"; export declare const DIM = "\u001B[2m"; export declare const BOLD = "\u001B[1m"; export declare const YELLOW = "\u001B[33m"; export declare const RED = "\u001B[31m"; export declare const RESET = "\u001B[0m"; export declare function info(msg: string): void; export declare function warn(msg: string): void; export declare function error(msg: string): void; //# sourceMappingURL=log.d.ts.map