/// import type { GetComponent } from '../OcTable.types'; import type { FixedInfo } from '../Utilities/fixUtil'; export interface TableContextProps { getComponent: GetComponent; scrollbarSize: number; direction: string; fixedInfoList: readonly FixedInfo[]; isSticky: boolean; } declare const TableContext: import("react").Context; export default TableContext;