interface OutputFlags { noColor: boolean; quiet: boolean; verbose: boolean; } export declare function setOutputFlags(f: OutputFlags): void; export declare function isQuiet(): boolean; export declare function printTable(headers: string[], rows: (string | number | null | undefined)[][]): void; export declare function ok(msg: string): void; export declare function warn(msg: string): void; export declare function info(msg: string): void; export declare function err(msg: string): void; export declare function handleError(e: unknown): never; /** Format bytes into human-readable string */ export declare function fmtBytes(bytes: number): string; /** Status emoji */ export declare function statusEmoji(status: string): string; export {}; //# sourceMappingURL=output.d.ts.map