/** * Mixin to manage whether the custom component has a shadow root or not * @param Base * @returns */ declare const ShadowRootMixin: (Base: any) => { new (): { [x: string]: any; /** * The DOM document in which this component is updated */ readonly document: any; }; [x: string]: any; }; export default ShadowRootMixin; //# sourceMappingURL=ShadowRootMixin.d.ts.map