import { Optional } from '@ephox/katamari'; import type { HTMLElementFullTagNameMap } from '../../alien/DomTypes'; interface SugarElement { readonly dom: T; } declare const SugarElement: { fromHtml: (html: string, scope?: Document | null) => SugarElement; fromTag: { (tag: K, scope?: Document | null): SugarElement; (tag: string, scope?: Document | null): SugarElement; }; fromText: (text: string, scope?: Document | null) => SugarElement; fromDom: (node: T) => SugarElement; fromPoint: (docElm: SugarElement, x: number, y: number) => Optional>; }; export { SugarElement }; //# sourceMappingURL=SugarElement.d.ts.map