import { FC } from 'react'; export type TWithPortalArgs = Type & { isOpen?: boolean; }; export declare const withPortal: (WrappedComponent: FC>) => (props: TWithPortalArgs) => import("react/jsx-runtime").JSX.Element;