import React from 'react'; import { ISurface } from '../Surface/Surface'; import { ISize, IElement, IPropsAny, IElementReference } from '../types'; export interface ITable extends ISurface { size?: ISize; header?: IElement; footer?: IElement; WrapperComponentProps?: IPropsAny; TableComponent?: IElementReference; WrapperComponent?: IElementReference; } declare const Table: React.FC; export default Table;