import { CellContext } from '@tanstack/react-table'; import { HTMLAttributes } from 'react'; import { CellMetadata, Operation } from '../../../interfaces'; import { JSONRecord } from '../../../interfaces/JSONRecord.js'; export interface OperationButtonProps extends Omit, "onClick"> { operation: Operation; info: CellContext; metadata?: CellMetadata; onClick: () => void; i18n?: (i18n: string) => string; } export declare function DefaultOperationButton(props: OperationButtonProps): import("react/jsx-runtime").JSX.Element;