import React from 'react'; import { ColumnType, TableProps } from './interfaces.js'; declare function Column(_: ColumnType): null; declare function InternalTable({ ref: wrapperRef, ...props }: TableProps & { ref?: React.Ref; }): import("react/jsx-runtime").JSX.Element; type InternalTableType = typeof InternalTable; interface TableInterface extends InternalTableType { Column: typeof Column; } export declare const Table: TableInterface; export {};