import React, { RefAttributes } from 'react';
import { TableActionCellProps } from './TableActionCell.types';
/**
 * TableActionCells are internal components used to manage table actions
 */
declare const TableActionCell: React.ForwardRefExoticComponent<RefAttributes<HTMLTableCellElement> & TableActionCellProps>;
export default TableActionCell;
