import { type VariableNode } from '@prezly/slate-types'; import React from 'react'; import type { RenderElementProps } from 'slate-react'; import type { Variable } from './types'; interface Props extends RenderElementProps { element: VariableNode; variables: Variable[]; } export declare function VariableElement({ attributes, children, element, variables }: Props): React.JSX.Element; export {};