import { OverrideProps } from "../OverridableComponent"; import { Theme } from "../styles"; import { TableBodyClasses } from "./tableBodyClasses"; import { SxProps } from "@suid/system"; import * as ST from "@suid/types"; import * as JSX from "solid-js"; export type TableBodyTypeMap

= { name: "MuiTableBody"; selfProps: { /** * The content of the component, normally `TableRow`. */ children?: JSX.JSXElement; /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; }; props: P & TableBodyTypeMap["selfProps"]; defaultComponent: D; }; export type TableBodyProps = OverrideProps, D>; export default TableBodyProps; //# sourceMappingURL=TableBodyProps.d.ts.map