@arco-design/web-react
Version:
Arco Design React UI Library.
10 lines (9 loc) • 465 B
TypeScript
/// <reference types="react" />
import Summary from './summary/index';
declare const TableComponent: (<T>(props: import("./interface").TableProps<T> & {
ref?: import("react").Ref<import("./table").TableInstance>;
}) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) & {
Summary: typeof Summary;
};
export default TableComponent;
export { TableProps, ColumnProps, RowSelectionProps, ExpandProps } from './interface';