UNPKG

@bee-design/ui

Version:

Bee Design React UI Library.

10 lines (9 loc) 298 B
import React from 'react'; import { TableProps } from './interface'; export interface TableInstance { getRootDomElement: () => HTMLDivElement; } declare const _default: <T>(props: TableProps<T> & { ref?: React.Ref<TableInstance>; }) => React.ReactElement; export default _default;