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 {};
