import { type SxProps } from "@mui/material/styles"; import { type Dispatch, type SetStateAction } from "react"; import { type ResizableImageResizerClasses } from "./ResizableImageResizer.classes"; export type ResizableImageResizerProps = { className?: string; onResize: (event: MouseEvent) => void; mouseDown: boolean; setMouseDown: Dispatch>; /** Override or extend existing styles. */ classes?: Partial; /** Provide custom styles. */ sx?: SxProps; }; export default function ResizableImageResizer(inProps: ResizableImageResizerProps): import("react/jsx-runtime").JSX.Element;