import { TableCellActionProps } from './table-cell-action.types'; /** * This component renders content in a table cell when a row is hovered or focused. * It should be used only inside `` component. * Use the property `floating` to place the content above the cell content. It is useful when space is limited. * * * ### Usage * * ```tsx * import { TableCellAction } from '@bloomreach/react-banana-ui'; * * export default function RowWithAction() { * return ( * * Foo * Bar * * * * * * * ); * } * ``` * * * ### Usage (floating) * * ```tsx * import { TableCellAction } from '@bloomreach/react-banana-ui'; * * export default function RowWithFloatingAction() { * return ( * * Foo * Bar * * Loang content with floating action * * * * * * ); * } * ``` */ declare const TableCellAction: import('react').ForwardRefExoticComponent>; export default TableCellAction;