import type { AttachmentNode } from '@prezly/slate-types'; import type { SlateEditor } from '@udecode/plate-common'; import React from 'react'; interface Props { element: AttachmentNode; onEdited: (editor: SlateEditor, updated: AttachmentNode) => void; onRemoved: (editor: SlateEditor, element: AttachmentNode) => void; } export declare function FileAttachmentMenu({ element, onEdited, onRemoved }: Props): React.JSX.Element | null; export {};