import React from 'react'; import { ISurface } from '../Surface/Surface'; import { ISize } from '../types'; export interface ITableFooter extends ISurface { size?: ISize; } declare const TableFooter: React.FC; export default TableFooter;