import type { Editor } from "@tiptap/core"; import type { CSSProperties, MutableRefObject } from "react"; interface TableRowMenuProps { editor: Editor; open: boolean; onOpenChange: (open: boolean) => void; floatingStyle: CSSProperties; triggerRef: (node: HTMLElement | null) => void; targetTriggerElementRef: MutableRefObject; } export declare function TableRowMenu(props: TableRowMenuProps): JSX.Element; export {};