import type { ChartTheme } from '../themes/types.js'; export interface DataTableProps { data: Record[]; columns?: string[]; theme?: ChartTheme; maxRows?: number; width?: number; height?: number; } export declare function DataTable({ data, columns, theme, maxRows, }: DataTableProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DataTable.d.ts.map