import { StringMap } from "quill"; declare const BlockEmbed: any; declare class Image extends BlockEmbed { static blotName: string; static tagName: string; static create(value: any): HTMLElement; static formats(domNode: HTMLElement): StringMap; static match(url: string): boolean; static register(): void; static sanitize(url: string): string; static value(domNode: Node): string | null; format(name: string, value: any): void; } export default Image;