import type { SkillSummary } from '../../lib/api-client/skills'; interface SkillMentionPopupProps { skills: SkillSummary[]; query: string; selectedIndex: number; onSelect: (skill: string) => void; onEnterSelect: (skill: string | undefined) => void; onClose: () => void; } export declare function SkillMentionPopup({ skills, query, selectedIndex, onSelect, onEnterSelect, onClose, }: SkillMentionPopupProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SkillMentionPopup.d.ts.map