import React from 'react'; import { ColumnType, TableProps } from './interfaces'; declare function Column(_: ColumnType): null; declare function InternalTable(props: TableProps, wrapperRef: React.ForwardedRef): JSX.Element; declare const ForwardTable: (props: TableProps & { ref?: React.ForwardedRef | undefined; }) => ReturnType; declare type ForwardTableType = typeof ForwardTable; interface TableInterface extends ForwardTableType { Column: typeof Column; } export declare const Table: TableInterface; export {};