import * as React from 'react'; export interface TableFooterProps { /** * Table footer rows */ children?: React.ReactNode; } export declare const TableFooter: React.FC;