import { bar as globalBar } from '../../core/loader/bar/bar.js'; import { progress as globalProgress } from '../../core/loader/progress/progress.js'; /** * Write attributes & CSS Properties to the DOM onto {@linkcode root}, based on * the provided contexts */ export declare function outIntoDOM(root: HTMLElement | SVGElement, progress: typeof globalProgress, bar: typeof globalBar): () => void; /** * Write attributes & CSS Properties to the DOM onto {@linkcode root}, based on * the global context */ export declare function outIntoDOM(root: HTMLElement | SVGElement): () => void; /** * Write attributes & CSS Properties to the DOM onto ``, based on the * global context */ export declare function outIntoDOM(): () => void;