import { type PropsWithChildren, type ComponentType } from 'react'; import type { ExpoLinkingOptions } from './getLinkingConfig'; import type { RequireContext } from './types'; export type ExpoRootProps = { context: RequireContext; location?: URL | string; wrapper?: ComponentType; linking?: Partial; }; export type NativeIntent = { redirectSystemPath?: (event: { path: string | null; initial: boolean; }) => Promise | string | null | undefined; }; /** * @hidden */ export declare function ExpoRoot({ wrapper: ParentWrapper, ...props }: ExpoRootProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ExpoRoot.d.ts.map