import type { Select } from "@table-library/react-table-library/types/select"; import type { TableNode } from "@table-library/react-table-library/types/table"; type SelectContextType = { selectLogic: Select; selectableRows: boolean; }; declare const useSelectContext: () => import("react").Context; export default useSelectContext;