import type { Theme } from "../theme/theme.js"; export interface RenderAnsiTableOptions { headers: readonly string[]; rows: readonly (readonly string[])[]; terminalWidth: number; theme: Theme; } export declare function renderAnsiTable({ headers, rows, terminalWidth, theme, }: RenderAnsiTableOptions): string[]; //# sourceMappingURL=markdown-table.d.ts.map