/** * Generic JSON-to-text formatter for --output text mode. * No per-tool special cases — just walks the data structure: * - string/number/boolean → as-is * - array → numbered list * - object → key: value pairs */ /** * Convert API response data to human-readable text. * Unwraps { status, message, data } envelope if present. */ export declare function formatAsMarkdown(data: unknown): string; //# sourceMappingURL=formatter.d.ts.map