/** * Adopt CSS into a document or shadow root. * @param {string} css - The CSS to adopt. * @param {Document|ShadowRoot} [root=globalThis.document] - The document or shadow root to adopt the CSS into. */ export default function adoptCSS(css: string, root?: Document | ShadowRoot): any;