@blocknote/mantine
Version:
A "Notion-style" block-based extensible text editor built on top of Prosemirror and Tiptap.
14 lines (13 loc) • 420 B
TypeScript
export declare const TableHandle: import("react").ForwardRefExoticComponent<({
className?: string;
draggable: boolean;
onDragStart: (e: React.DragEvent) => void;
onDragEnd: () => void;
style?: import("react").CSSProperties;
} & ({
children: import("react").ReactNode;
label?: string;
} | {
children?: undefined;
label: string;
})) & import("react").RefAttributes<HTMLButtonElement>>;