/// <reference types="react" />
import type { NodeKey } from 'lexical';
type EditorImageComponentProps = {
    altText: string;
    height: 'inherit' | number;
    nodeKey: NodeKey;
    src: string;
    width: 'inherit' | number;
};
export default function EditorImageComponent({ altText, height, nodeKey, src, width, }: EditorImageComponentProps): JSX.Element;
export {};
