import { HTMLAttributes, ReactElement, Ref } from 'react'; export interface TableFooterProps extends HTMLAttributes { ref?: Ref; } declare const TableFooter: { ({ ref, className, children, ...props }: TableFooterProps): ReactElement; displayName: string; }; export default TableFooter;