import type { TranslationStore } from "../translation/translationHelpers"; import type { PropsWithChildren } from "react"; declare type FeatureWrapperProps = { useShadowDom?: boolean; defaultStore: TranslationStore; }; export default function FeatureWrapper({ children, useShadowDom, defaultStore, }: PropsWithChildren): JSX.Element | null; declare type WithOrWithoutShadowDomProps = { useShadowDom?: boolean; }; export declare function WithOrWithoutShadowDom({ children, useShadowDom, }: PropsWithChildren): JSX.Element; export {};