import React from 'react'; export type PortalProps = { /** * Disable React portal integration */ disablePortal?: boolean; /** * Portal container element id */ containerId?: string; children: React.ReactNode; }; export declare const Portal: React.NamedExoticComponent; //# sourceMappingURL=Portal.d.ts.map