import React, { ReactNode } from "react"; interface IframePortalProps { children: ReactNode; height?: string; width?: string; dockedAlignment?: string; } declare const IframePortal: React.FC; export default IframePortal;