import React from 'react'; import type { ActionCellProps } from '../type'; type Props = Readonly & { onJsonViewClick?: () => void; }; export declare const ActionCell: React.MemoExoticComponent<({ flag, actions, flagTooltip, flagsCount, dropdownAction, onCloseDropdown, isDropdownShown, row, showJsonViewer, isTextShown, showIdButton, onCopyId, rowId, onJsonViewClick, renderDropdown, startSlot, ...props }: Props) => React.JSX.Element>; export {};