import React from 'react'; import type { TableProps } from './interface'; declare const ForwardTable: (props: TableProps & { children?: React.ReactNode; } & { ref?: React.Ref | undefined; }) => React.ReactElement; export default ForwardTable;