import React from "react"; import type { OverlayProps, SamePageSchema } from "../internal/types"; type LinkProps = { getLocalPageTitle?: (notebookPageId: string) => Promise; onLinkClick?: (notebookPageId: string, e: MouseEvent) => void; linkClassName?: string; linkNewPage?: (notebookPageId: string, title: string) => Promise; }; export type ViewSharedPagesProps = { portalContainer?: HTMLElement; } & LinkProps; type Props = { pages: { linkUuid: string; title: SamePageSchema; notebookPageId: string; }[]; } & ViewSharedPagesProps; declare const ViewSharedPages: ({ onClose, isOpen, pages, portalContainer, ...linkProps }: OverlayProps) => React.JSX.Element; export default ViewSharedPages;