export type OutputFormat = "table" | "json" | "csv"; export declare function formatOutput(data: unknown, format?: OutputFormat): void; export declare function formatBytes(bytes: number | undefined): string; export declare function formatDuration(ms: number): string; export declare function formatCountWithSuffix(count: number, suffix: string): string; //# sourceMappingURL=output.d.ts.map