import React, { PropsWithChildren } from 'react'; import type { RefObject } from 'react'; export declare const PortalContext: React.Context>; export declare type PortalProviderProps = PropsWithChildren<{ container: RefObject; }>; export declare const PortalProvider: React.FC;