import { type FloatingPlusButtonProps } from "../FloatingPlusButton/index.js"; type ControlType = FloatingPlusButtonProps['type']; export type FloatingPlusControlProps = { type: ControlType; index: number; cellElem: Element; tableElem: Element; onClick: (rowIdx: number) => void; }; export declare const FloatingPlusControl: import("react").NamedExoticComponent; export {};