import React from "react"; import { Hooks } from "react-table"; import { Operation } from "../../../interfaces"; export declare type UseOperationsHookProps = { CellOperations?: React.ComponentType; operations: Operation[]; onClick?: (data: any, event: string) => void; i18n?: (f: string) => string; ctx?: any; }; export declare function useOperations({ operations, CellOperations, onClick, i18n, ctx }: UseOperationsHookProps): (hooks: Hooks) => void;