UNPKG

@amaui/ui-react

Version:
14 lines (13 loc) 439 B
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<ITable>; export default Table;