import ScalarDict from './ScalarDict.js'; import React from 'react'; import { ForegroundColor } from 'chalk'; export type TableColumn = { [column in keyof T]: { header?: string; color?: ForegroundColor | 'dim'; }; }; export interface TableProps { rows: T[]; columns: TableColumn; } declare function Table({ rows, columns: columnsConfiguration }: TableProps): React.JSX.Element; export { Table };