import React from 'react'; import { TableProps } from './interface'; export interface TableInstance { getRootDomElement: () => HTMLDivElement; } declare const _default: (props: TableProps & { ref?: React.Ref; }) => React.ReactElement; export default _default;