import type { Row } from '@tanstack/react-table'; import * as React from 'react'; import { Table } from '../table/Table'; export type DataTableRowProps = React.ComponentProps & { row: Row>; rowAction?: (row: Record, event: React.MouseEvent) => void; }; export declare const DataTableRow: ({ row, rowAction }: DataTableRowProps) => React.JSX.Element;