import React from 'react'; import { type RenderElementProps } from 'slate-react'; import type { InfoText } from '../../../components'; import { ButtonBlockNode } from '../ButtonBlockNode'; interface Props extends RenderElementProps { element: ButtonBlockNode; withNewTabOption: boolean; info?: InfoText.StructuredContent; } export declare function ButtonBlockElement({ attributes, children, element, info, withNewTabOption, }: Props): React.JSX.Element; export {};