import * as React from "react"; interface PortalRendererProps { children: (portals: JSX.Element[]) => React.ReactNode; } export interface IPortalRenderer { render: (id: string, children: React.ReactNode, container: Element) => void; unmount: (id: string) => void; } export declare const PortalRenderer: React.ForwardRefExoticComponent>; export {};