/** * Autocomplete component for @ file path mentions */ import { type FC } from 'react'; import type { FilePathSuggestion } from '../utils/file-path-completer.js'; export interface FilePathAutocompleteProps { suggestions: FilePathSuggestion[]; selectedIndex: number; fragment: string; } export declare const FilePathAutocomplete: FC; //# sourceMappingURL=FilePathAutocomplete.d.ts.map