import React, { PropsWithChildren } from "react"; import { ViewProps } from "react-native"; export type PortalHostProps = { /** * Identifier for portals to push content to. */ name: "root" | Omit; /** * Determines whether or not the portal content is rendered before or after the children of the portal host */ renderPortalsFirst?: boolean; }; export declare const PortalHost: React.MemoExoticComponent<({ name, children, renderPortalsFirst, ...rest }: PropsWithChildren) => React.JSX.Element>;