/** * ✔ enable */ import { ReactNode } from 'react'; interface RootPortalProps { enable?: boolean; children: ReactNode; [x: string]: any; } declare const _RootPortal: { (props: RootPortalProps): import("react").FunctionComponentElement; displayName: string; }; export default _RootPortal;