import { LexicalCommand } from 'lexical';
export interface InsertImagePayload {
    altText: string;
    src: string;
    width: number;
    height: number;
}
export declare const INSERT_IMAGE_COMMAND: LexicalCommand<InsertImagePayload>;
export default function ImagePlugin(): JSX.Element;
