import type { HtmlNode } from '@prezly/slate-types';
import type { PropsWithChildren } from 'react';
import React from 'react';
import type { RenderElementProps } from 'slate-react';
interface Props extends RenderElementProps {
element: HtmlNode;
}
export declare function HtmlElement({ attributes, children, element }: PropsWithChildren): React.JSX.Element;
export {};