/** * Shared CLI rendering utilities for consistent output formatting */ import type { Tool } from '../tools'; export interface RenderOptions { format: 'table' | 'csv' | 'json'; detailed?: boolean; } /** * Render tools in the specified format */ export declare function renderTools(tools: Tool[], options: RenderOptions): void; //# sourceMappingURL=render.d.ts.map