UNPKG

@onesy/ui-react

Version:
13 lines (12 loc) 414 B
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;