export interface QuerySelectorAll {
    querySelectorAll(selectors: string): NodeListOf<Element>;
}
export declare function getElementById(elementId: string): HTMLElement;
export declare function getSlot(within: QuerySelectorAll, slotName: string): HTMLElement;
export declare function setSlotText(within: QuerySelectorAll, slotText: Record<string, string>): void;
export declare function cloneTemplate(elementId: string, slotText?: Record<string, string>): DocumentFragment;
export declare function elementWithAbsolutePaths<Type extends QuerySelectorAll>(fragment: Type): Type;
export declare function getHTML(fragment: Node): string;
//# sourceMappingURL=utils-dom.d.ts.map