/// import type { Node as ProseMirrorNode } from "@tiptap/pm/model"; import { type NodeViewProps } from "@tiptap/react"; import { type ImageBlockData } from "../../../../core/imageUtils"; export interface ImageViewProps extends NodeViewProps { node: ImageNode; } export declare function ImageView(props: ImageViewProps): JSX.Element; interface ImageNode extends ProseMirrorNode { attrs: { content?: ImageBlockData; }; } export declare const nodeWrapperClassName = "imageViewNodeWrapper"; export declare function imageViewHeight(isEmpty: boolean): number; export {};