import { type CellData, type RowData, type TableFeatures } from '@tanstack/react-table'; import type { SimpleTableColumnDefBase } from './public.api.js'; declare module '@tanstack/react-table' { interface ColumnMeta { alignment?: SimpleTableColumnDefBase['alignment']; width?: SimpleTableColumnDefBase['width']; minWidth?: SimpleTableColumnDefBase['minWidth']; maxWidth?: SimpleTableColumnDefBase['maxWidth']; } } /** * Use `SimpleTable` to display small sets of data and Markdown. It doesn't support sorting, resizing, filtering, or virtualization. It behaves like a native HTML table. * @public */ export declare const SimpleTable: (props: import("./public.api.js").SimpleTableBaseProps & import("../../index.js").StylingProps & import("../../index.js").DataTestId & import("../../index.js").MaskingProps & import("../../index.js").BehaviorTrackingProps & import("react").RefAttributes) => import("react").ReactElement | null; //# sourceMappingURL=SimpleTable.d.ts.map