import type { FunctionComponent, ReactNode } from 'react'; import type { Range } from 'slate'; import type { Option } from '../types'; interface Props { index: number; onOptionClick: (option: Option) => void; options: Option[]; renderOption: (option: Option) => ReactNode; target: Range | null; } export declare const MentionsDropdown: ({ index, onOptionClick, options, renderOption, target, }: Props) => ReactNode; export {};