import type { VideoNode } from '@prezly/slate-types'; import React from 'react'; import type { RenderElementProps } from 'slate-react'; import type { InfoText } from '../../../components'; interface Props extends RenderElementProps { info?: InfoText.StructuredContent; element: VideoNode; mode: 'iframe' | 'thumbnail'; withMenu: boolean; withLayoutControls: boolean; withConversionOptions: boolean; } export declare function VideoElement({ attributes, children, element, info, mode, withMenu, withLayoutControls, withConversionOptions, }: Props): React.JSX.Element; export {};