/** * Interactive @mention file picker. * * Activates when the user types @ in chat. Takes over stdin, renders an * overlay list below the current input line, and returns the chosen path * via callback. Readline is paused for the duration. */ import type { Interface as RLInterface } from 'readline'; export declare function startFilePicker(opts: { cwd: string; rl: RLInterface; promptLine: string; queryTyped: string; onSelect: (refPath: string) => void; onCancel: () => void; }): void; //# sourceMappingURL=file-picker.d.ts.map