import { FC, HTMLAttributes } from 'react'; export type TableFootProps = HTMLAttributes; /** The TableFoot component represents the `` section of a table, typically used to display summary rows, totals, or persistent footer content aligned with the table's columns */ export declare const TableFoot: FC;