import React from 'react'; import type { DefaultProps } from '../../types'; import type { TableFooterProps } from '@mui/material/TableFooter'; export interface ITableFooterProps extends DefaultProps, TableFooterProps { } declare const TableFooter: ({ style, margin, padding, children }: ITableFooterProps) => React.JSX.Element; export default TableFooter;