export declare const Portal: import("react").NamedExoticComponent<{
    children?: import("react").ReactNode | undefined;
}> & {
    readonly type: ({ children }: import("react").PropsWithChildren) => null;
} & {
    with: <T extends object>(Component: import("react").ComponentType<T>) => import("react").MemoExoticComponent<(props: T) => import("react/jsx-runtime").JSX.Element>;
    Anchor: import("react").MemoExoticComponent<(props: Omit<import("react").HTMLAttributes<HTMLDivElement>, "children">) => import("react/jsx-runtime").JSX.Element>;
};
