import { BookmarkNode } from '@prezly/slate-types'; import type { FunctionComponent } from 'react'; import type { Presentation } from '../types'; interface Props { element: BookmarkNode; withNewTabOption: boolean; withConversionOptions: boolean; onConvert: (presentation: Presentation) => void; } export declare const WebBookmarkMenu: FunctionComponent; export {};