import React from 'react';
import { ISurface } from '../Surface/Surface';
import { IElement, IPropsAny, IElementReference } from '../types';
export declare type ITable = ISurface & {
    header?: IElement;
    footer?: IElement;
    WrapperComponentProps?: IPropsAny;
    TableComponent?: IElementReference;
    WrapperComponent?: IElementReference;
};
declare const Table: React.FC<ITable>;
export default Table;
