import React from "react"; import type { OverlayProps } from "../internal/types"; declare const LinkNewPage: ({ onClose, isOpen, notebookPageId, linkNewPage, }: OverlayProps<{ notebookPageId: string; linkNewPage?: ((notebookPageId: string, title: string) => Promise) | undefined; }>) => React.JSX.Element; export default LinkNewPage;