import type { VariableNode } from '@prezly/slate-types'; import React from 'react'; import type { Variable } from './types'; interface Props { container: HTMLElement; element: VariableNode; onClose: () => void; variables: Variable[]; } export declare function VariableMenu({ container, element, onClose, variables }: Props): React.JSX.Element | null; export {};