import { AtomContextMenuProps, MenuItemsProps } from '../contextMenu.types'; import { Editor } from 'src/script/editor'; import { ReactNode } from 'react'; declare type Props = { props: MenuItemsProps; selectedAtomId: number | undefined; editor: Editor; }; declare const useMakeAttachmentPointMenuItems: ({ props, selectedAtomId, editor, }: Props) => ReactNode[] | null; export default useMakeAttachmentPointMenuItems;