import React from 'react'; import { InfoText } from '../../../components'; import { EmbedNode } from '../EmbedNode'; import type { Presentation } from '../types'; export interface FormState { layout: EmbedNode['layout']; } interface Props { info?: InfoText.StructuredContent; url: EmbedNode['url']; onChange: (props: Partial) => void; onConvert: (presentation: Presentation) => void; onRemove: () => void; value: FormState; withLayoutControls: boolean; withConversionOptions: boolean; } export declare function EmbedMenu({ info, url, onChange, onConvert, onRemove, value, withLayoutControls, withConversionOptions, }: Props): React.JSX.Element; export {};