import React from 'react'; import type { MouseEvent } from 'react'; import type { DefaultProps } from '../../types'; import type { TableRowProps } from '@mui/material/TableRow'; export interface ITableRowProps extends DefaultProps, TableRowProps { selected?: boolean; hover?: boolean; background?: string; onClick?: (event: MouseEvent) => void; } declare const TableRow: ({ style, margin, padding, children, background, ...otherProps }: ITableRowProps) => React.JSX.Element; export default TableRow;