import { CellContext } from '@tanstack/react-table'; import { CellMetadata, Operation } from '../../../interfaces'; import { JSONRecord } from '../../../interfaces/JSONRecord.js'; export interface DefaultCellOperationsProps { info: CellContext; operations: Operation[]; metadata?: CellMetadata; i18n: (i18n: string) => string; onClick?: (data: any, operation: Operation) => void; } export declare function DefaultCellOperations({ info, metadata, operations, i18n, onClick }: DefaultCellOperationsProps): import("react/jsx-runtime").JSX.Element;