@amaui/ui-react
Version:
UI for React
14 lines (13 loc) • 439 B
TypeScript
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;