export function Portal({ children, ...restProps }: { [x: string]: any; children: any; }): import("react/jsx-runtime").JSX.Element; export namespace Portal { export { Container }; export { Modal }; } declare function Container({ children, ...restProps }: { [x: string]: any; children: any; }): import("react/jsx-runtime").JSX.Element; declare function Modal({ children, handleClose, portalStyles, styles, componentName, darkMode, dragResizePortal, }: { children: any; handleClose: any; portalStyles: any; styles: any; componentName: any; darkMode: any; dragResizePortal: any; }): import("react/jsx-runtime").JSX.Element; export {};