import React from "react"; import { ITableContext, ITableProviderProps } from "./TableContext.types"; export declare const TableProvider: ({ value, children }: ITableProviderProps) => React.JSX.Element; export declare const useTable: () => ITableContext;