import { styleText } from "node:util"; export type StyleFormat = Parameters[0]; /** * Apply terminal color/style formatting to text. * Wraps util.styleText with a programmatic kill switch for tests, * since test runner workers set FORCE_COLOR=1 which overrides NO_COLOR. */ export declare function colorize(format: StyleFormat, text: string): string; export declare namespace colorize { var disable: () => void; var enable: () => void; }