import { GridRowProps } from 'react-aria'; import React from 'react'; import { TableState } from 'react-stately'; interface TableRowProps extends GridRowProps { state: TableState; children: React.ReactNode; } declare const TableRow: (props: TableRowProps) => import("react/jsx-runtime").JSX.Element; export { TableRow }; //# sourceMappingURL=TableRow.d.ts.map