modulo-editor
Version:
A flexible and extensible block-based editor for React applications
14 lines (13 loc) • 420 B
TypeScript
import React, { RefObject } from "react";
type NewType = {
imageData: any;
readOnly: boolean;
config: any;
imageRef: RefObject<HTMLImageElement | null>;
containerRef: RefObject<HTMLDivElement | null>;
getImageContainerClassName: () => string;
getImageClassName: () => string;
onCaptionChange: (caption: string) => void;
};
export declare const ImageDisplay: React.FC<NewType>;
export {};