///
import { LexicalCommand, LexicalEditor } from 'lexical';
import { InlineImagePayload } from '../../nodes/InlineImageNode';
export type InsertInlineImagePayload = Readonly;
export declare const INSERT_INLINE_IMAGE_COMMAND: LexicalCommand;
export declare function InsertInlineImageDialog({ activeEditor, onClose, }: {
activeEditor: LexicalEditor;
onClose: () => void;
}): JSX.Element;
export default function InlineImagePlugin(): JSX.Element | null;
declare global {
interface DragEvent {
rangeOffset?: number;
rangeParent?: Node;
}
}