import { HTMLHeroUIProps } from '@heroui/system';
import { RowProps } from '@react-types/table';
type TableRowProps = RowProps & Omit, keyof RowProps>;
declare const TableRow: (props: TableRowProps) => JSX.Element;
export { type TableRowProps, TableRow as default };