import { SugarElement } from './SugarElement'; type ElementTuple = { [K in keyof T]: SugarElement; }; declare const fromHtml: (html: string, scope?: Document | null) => ElementTuple; declare const fromTags: (tags: string[], scope?: Document | null) => SugarElement[]; declare const fromText: (texts: string[], scope?: Document | null) => SugarElement[]; declare const fromDom: (nodes: ArrayLike) => SugarElement[]; export { fromHtml, fromTags, fromText, fromDom }; //# sourceMappingURL=SugarElements.d.ts.map