///
import { TableRowProps } from "@material-ui/core/TableRow";
export declare const StyledTableHead: import("styled-components").StyledComponent>, any, {}, never>;
export interface ITableBodyRowProps extends TableRowProps {
index?: number;
hideTableHead?: boolean;
}
export declare const TableBodyRow: import("styled-components").StyledComponent<({ index, hideTableHead, ...rest }: ITableBodyRowProps) => JSX.Element, any, ITableBodyRowProps, never>;