import React from "react"; export type Props = { onClose: () => void; portalContainer?: HTMLElement; isOpen?: boolean; notebookPageId: string; }; declare const SharePageDialog: ({ onClose, isOpen, portalContainer, notebookPageId, }: Props) => React.JSX.Element; export default SharePageDialog;