type ModalProps = { children: React.ReactNode; container: React.MutableRefObject; useContainer: boolean; staticStyles?: string; }; /** * ModalPortal is a component that renders the Modal into the portal on the container provided in the props. * It also handles the fixed view of the modal, when the modal is open in fullscreen view. * the fixedView prop is used to initiate the fixed view of the modal. */ export declare const ModalPortal: React.FC; export {};