/** * Simple colored output helpers for the CLI. * Uses ANSI codes directly — no chalk dependency needed. */ export declare function pass(label: string, detail?: string): void; export declare function fail(label: string, detail?: string): void; export declare function warn(label: string, detail?: string): void; export declare function skip(label: string, detail?: string): void; export declare function info(message: string): void; export declare function heading(title: string): void; export declare function dim(message: string): void;