import * as React from 'react'; export interface TableFooterProps { /** * Table footer rows */ children?: React.ReactNode; } export const TableFooter: React.FC = ({ children, ...rest }) => {children};