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