import * as React from 'react';
import { SxProps } from '@mui/system';
import { Theme } from "../styles/index.js";
import { OverridableComponent, OverrideProps } from "../OverridableComponent/index.js";
import { TableRowClasses } from "./tableRowClasses.js";
export interface TableRowOwnProps {
/**
* Should be valid `
` children such as `TableCell`.
*/
children?: React.ReactNode;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial;
/**
* If `true`, the table row will shade on hover.
* @default false
*/
hover?: boolean;
/**
* If `true`, the table row will have the selected shading.
* @default false
*/
selected?: boolean;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps;
}
export interface TableRowTypeMap {
props: AdditionalProps & TableRowOwnProps;
defaultComponent: RootComponent;
}
/**
* Will automatically set dynamic row height
* based on the material table element parent (head, body, etc).
*
* Demos:
*
* - [Table](https://mui.com/material-ui/react-table/)
*
* API:
*
* - [TableRow API](https://mui.com/material-ui/api/table-row/)
*/
declare const TableRow: OverridableComponent;
export type TableRowProps = OverrideProps, RootComponent> & {
component?: React.ElementType;
};
export default TableRow;