import { PropsWithChildren } from "react"; export type PortalProps = { /** * The name of the portal. The name will be registered and available for all components to route to. */ name: "root" | Omit; }; export declare const Portal: ({ name, children }: PropsWithChildren) => null;