import { NodeViewProps } from '@tiptap/react'; import { IpfsImageFetchPayload } from '../../types.ts'; export declare const getResizableMediaNodeView: (ipfsImageFetchFn: (_data: IpfsImageFetchPayload) => Promise<{ url: string; file: File; }>, fetchV1ImageFn: (url: string) => Promise) => ({ node, updateAttributes, deleteNode, selected, editor, getPos, }: NodeViewProps) => import("react/jsx-runtime").JSX.Element;