import type { Action } from "../../../../../core/index.js"; import "./floating.css"; export type TableCellFloatingButtonAction = { action: Action>; text: string; }; export type TableCellFloatingButtonMixed = TableCellFloatingButtonAction | TableCellFloatingButtonAction[]; export type TableCellFloatingButtonActions = TableCellFloatingButtonMixed[]; export type TableCellFloatingButtonProps = { dom?: Element; actions: TableCellFloatingButtonActions; }; export declare const TableCellFloatingButton: React.FC;