import * as React from 'react'; export interface ChartDataTableColumn { /** Header text for this column */ header: string; /** Key to read from each row object */ key: string; } export interface ChartDataTableProps { /** Column definitions (header + key). If omitted, columns are auto-derived from the dataset object keys with the first character capitalized (e.g. "group" → "Group"). */ columns?: ChartDataTableColumn[]; /** Array of data objects. Each object should have keys matching the column `key` values. */ dataSet: Array>; /** * If true, the table uses inverse (dark) styling. * @default false */ isInverse?: boolean; } export declare function ChartDataTable({ columns, dataSet, isInverse, }: ChartDataTableProps): React.JSX.Element;