mui-tiptap
Version:
A Material-UI (MUI) styled WYSIWYG rich text editor, using Tiptap
10 lines (9 loc) • 421 B
TypeScript
import { type Dispatch, type SetStateAction } from "react";
type ResizableImageResizerProps = {
className?: string;
onResize: (event: MouseEvent) => void;
mouseDown: boolean;
setMouseDown: Dispatch<SetStateAction<boolean>>;
};
export declare function ResizableImageResizer({ onResize, className, mouseDown, setMouseDown, }: ResizableImageResizerProps): import("react/jsx-runtime").JSX.Element;
export {};