import type { SimpleTableV2ColumnDefBase, SimpleTableV2RowData } from './public.api.js'; declare module '@tanstack/react-table' { interface ColumnMeta { alignment?: SimpleTableV2ColumnDefBase['alignment']; width?: SimpleTableV2ColumnDefBase['width']; minWidth?: SimpleTableV2ColumnDefBase['minWidth']; maxWidth?: SimpleTableV2ColumnDefBase['maxWidth']; } } /** * The `SimpleTableV2` component is a simplified version of the `DataTableV2`. 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 SimpleTableV2: (props: import("./public.api.js").SimpleTableV2BaseProps & import("@dynatrace/strato-components/core/index.js").StylingProps & import("@dynatrace/strato-components/core/index.js").DataTestId & import("@dynatrace/strato-components/core/index.js").MaskingProps & import("react").RefAttributes) => React.ReactElement | null;