import * as React from 'react'; import { RowData, ColumnDef } from '@tanstack/react-table'; import { D as DirectionType } from '../commonTypes-BtF87PmG.mjs'; type SimpleTableProps = { direction?: DirectionType; columns: ColumnDef[]; headerless?: boolean; data: DataProps[]; condensed?: boolean; isLoading?: boolean; defaultSort?: string; classNames?: string; extra?: React.ReactNode; texts?: { searchPlaceholder?: string; noData?: any; page?: string; filter?: string; of?: string; total?: string; }; }; declare module "@tanstack/table-core" { interface ColumnMeta { padding?: "condensed" | "default" | "noPadding"; sortable?: boolean; hidden?: boolean; } } declare const SimpleTable: ({ columns, data, classNames, headerless, ...props }: SimpleTableProps) => React.JSX.Element; export { SimpleTable };