import type { AccessoryOutcome } from '@crouton-kit/humanloop'; import type { Picker } from './pickers.js'; import { extractFilePaths } from '../visible-paths.js'; export declare function buildFileReviewPicker(candidates: readonly string[], cwd: string, onChoose: (file: string) => void, close: () => void, notify: (message: string) => void): Picker; export declare function launchFileReview(file: string, cwd: string, opts: { onDone: (outcome: AccessoryOutcome) => void; onNotice: (message: string) => void; }): void; export { extractFilePaths };