import * as React from 'react'; import type { ColumnDef } from '@tanstack/react-table'; interface DataTableProps { columns: ColumnDef[]; data: TData[]; onRowClick?: (row: TData) => void; onRowHover?: (row: TData) => void; currentViewer?: string; className?: string; paginationClasses?: string; leadingCell?: React.ComponentType; trailingCell?: React.ComponentType; showPagination?: boolean; tab?: string; isLoading?: boolean; } export declare function DataTable({ columns, data, onRowClick, onRowHover, currentViewer, className, paginationClasses, trailingCell: TrailingCell, leadingCell: LeadingCell, showPagination, tab, isLoading, }: DataTableProps): React.JSX.Element; export {}; //# sourceMappingURL=DataTable.d.ts.map