/// import { RowProps as TableRowBaseProps } from '@react-types/table'; import { CSS } from '../../theme/stitches.config'; export declare type TableRowProps = TableRowBaseProps & { css?: CSS; }; declare const TableRow: (props: TableRowProps) => JSX.Element; export default TableRow;