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