import { TableFootProps } from './table-foot.types'; /** * The component renders a `` element and should contain `TableRow` components. * * ### Usage * * ```tsx * import { TableFoot, TableRow, TableCell } from '@bloomreach/react-banana-ui'; * * export default function MyCustomTableFooter() { * return ( * * * This cell will be rendered as `` * * * ); * } * ``` */ declare const TableFoot: import('react').ForwardRefExoticComponent>; export default TableFoot;