import type { SimpleTableColumnDefBase, SimpleTableRowData } from './public.api.js'; declare module '@tanstack/react-table' { interface ColumnMeta { alignment?: SimpleTableColumnDefBase['alignment']; width?: SimpleTableColumnDefBase['width']; minWidth?: SimpleTableColumnDefBase['minWidth']; maxWidth?: SimpleTableColumnDefBase['maxWidth']; } } /** * The `SimpleTable` component is a simplified version of the `DataTable`. It is * designed to handle small sets of data and markdown representation. It does not * feature sorting, resizing, filtering, or virtualization and 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;