import { Region, Cursor } from '../core'; export declare function matchHtmlTag(cursor: Cursor): HtmlTag | null; export interface HtmlTag { type: HtmlTagType; tagName: string; region: Region; } export declare enum HtmlTagType { OPENING = 1, CLOSING = 2, SELF_CLOSING = 3 }