import type { LinkNode } from '@prezly/slate-types'; import * as React from 'react'; import type { InlineLinksExtensionConfiguration } from '../../extensions/inline-links'; import type { FetchOEmbedFn, Presentation } from './types'; interface Props { node: LinkNode | null; canUnlink: boolean; withConversionOptions: false | { fetchOembed: FetchOEmbedFn; }; withNewTabOption: boolean; onBlur: () => void; onChange: (props: Pick) => void; onClose: () => void; onConvert?: (presentation: Presentation) => void; onUnlink: () => void; predefinedLinks: InlineLinksExtensionConfiguration['predefinedLinks']; } export declare function LinkMenu({ node, canUnlink, withConversionOptions, withNewTabOption, onBlur, onChange, onClose, onConvert, onUnlink, predefinedLinks, }: Props): React.JSX.Element; export {};