import * as React from "react"; import { TableLayoutState } from './type'; interface TableBaseContextProps { prefixCls: string; tableData: any[]; layout: TableLayoutState; } export declare const TableContext: React.Context; export {};