/** * Copyright (c) 2026 Microblink Ltd. All rights reserved. */ import { JSX, ParentComponent } from "solid-js"; /** * The SolidShadowRoot props. */ type SolidShadowRootProps = { /** * Disables shadow root, mostly useful for debugging. */ disableShadowRoot?: boolean; /** * A ref to the div element. */ getRef?: (el: HTMLDivElement) => void; } & JSX.HTMLAttributes; /** * The SolidShadowRoot component. */ export declare const SolidShadowRoot: ParentComponent; export {}; //# sourceMappingURL=SolidShadowRoot.d.ts.map