/** * Dependency-free presentation helpers shared by the three engine CLIs. cli-core carries no runtime * dependencies (no `chalk`), so these return plain strings — the consuming CLI colours/prints them. * The box-drawing table mirrors the `listAgentTable` output the CLIs render for `setup-mcp --list`. */ /** A rendered, box-drawn table as a single multi-line string (no ANSI colour). */ export declare function renderTable(headers: readonly string[], rows: readonly (readonly string[])[]): string; /** * Truncate a string to `max` characters with a trailing ellipsis (never longer than `max`). Used to * keep long config paths inside a table column. */ export declare function truncate(value: string, max: number): string; //# sourceMappingURL=ui.d.ts.map