export interface EntityTableCellActionsProps {
    showError: false | Error | undefined;
    disabled: boolean;
    showExpandIcon: boolean | undefined;
    selected: boolean | undefined;
    openPopup?: (cellRect: DOMRect | undefined) => void;
    children?: React.ReactNode;
}
export declare function EntityTableCellActions({ showError, disabled, showExpandIcon, selected, openPopup, children }: EntityTableCellActionsProps): import("react/jsx-runtime").JSX.Element;
