import * as React from 'react'; import { MentionItem as MentionItemType, MentionPosition } from './types'; interface MentionPanelProps { items: MentionItemType[]; activeIndex: number; onSelectItem: (item: MentionItemType, isTriggerByClick?: boolean) => void; position: MentionPosition; filter: string; visible: boolean; level: number; loading?: boolean; } export declare const MentionPanel: React.FC; export {}; //# sourceMappingURL=mention-panel.d.ts.map