import React from 'react'; import type { RenderElementProps } from 'slate-react'; import type { InfoText } from '../../../components'; import type { EmbedNode } from '../EmbedNode'; interface Props extends RenderElementProps { allowHtmlInjection?: boolean; allowScreenshots?: boolean; availableWidth: number; info?: InfoText.StructuredContent; element: EmbedNode; withMenu: boolean; withLayoutControls: boolean; withConversionOptions: boolean; } export declare function EmbedElement({ allowHtmlInjection, allowScreenshots, attributes, children, element, info, withMenu, withLayoutControls, withConversionOptions, }: Props): React.JSX.Element; export {};