/** * Type guard for a real ShadowRoot, used to ensure style injection never targets * `document.head`/`document.body` (which would break Shadow DOM style isolation). * @param {unknown} value - The candidate value. * @returns {boolean} True when the value is a ShadowRoot. */ export declare const isShadowRoot: (value: unknown) => value is ShadowRoot; //# sourceMappingURL=isShadowRoot.d.ts.map