import { Theme } from "../styles"; import { TableFooterClasses } from "./tableFooterClasses"; import { SxProps } from "@suid/system"; import * as ST from "@suid/types"; import { JSXElement } from "solid-js"; export type TableFooterTypeMap

= { name: "MuiTableFooter"; selfProps: { /** * The content of the component, normally `TableRow`. */ children?: 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 & TableFooterTypeMap["selfProps"]; defaultComponent: D; }; export type TableFooterProps = ST.OverrideProps, D>; export default TableFooterProps; //# sourceMappingURL=TableFooterProps.d.ts.map