/** * @file RcPortal 传送门 */ import { ReactNode, ReactPortal } from 'react'; interface IRcPortal { getContainer?: () => HTMLElement | null; children: ReactNode; onUpdated?: () => void; } export declare type IRcPortalProps = IRcPortal; export declare function RcPortal(props: IRcPortalProps): ReactPortal | null; export {};