import React from 'react'; import type { Range } from 'slate'; import type { Option } from '../../mentions'; import type { Variable } from '../types'; interface Props { index: number; onOptionClick: (option: Option) => void; options: Option[]; target: Range | null; } export declare function VariablesDropdown({ index, onOptionClick, options, target }: Props): React.JSX.Element; export {};