import { ObjectForExtending, TableProps } from './types'; export interface Props { direction: 'ltr' | 'rtl'; } export declare function Table({ tableConfig: tableConfigExternal, columnConfig: colsOrGroupColsConfig, rows, topSummaryRows, bottomSummaryRows, headerContextValue, rowContextValue, refTable, refTableContainer: refTableContainerExternal, }: TableProps): import("react/jsx-runtime").JSX.Element;