import type { OverlayProps } from "../internal/types"; import React from "react"; type Props = { portalContainer?: HTMLElement; onSubmit?: (data: { cid: string; title: string; }) => Promise; }; declare const ImportSharedPage: ({ onClose, isOpen, portalContainer, onSubmit, }: OverlayProps) => React.JSX.Element; export default ImportSharedPage;