export type InsertableContent = string | Element | Element[]; export declare const sanitizeContent: (html: string) => string; export declare const setHtml: (element: Element, html: string) => void; export declare const createElementFromHtml: (html: string) => Element; export declare const insertContent: (target: Element, content: InsertableContent, position: InsertPosition) => void; //# sourceMappingURL=dom.d.ts.map