import type { ReactNode } from "react"; import type { HunkDiffFile } from "@tooee/diff"; export interface DiffFilePickerOverlayProps { files: readonly HunkDiffFile[]; onSelect: (fileIndex: number) => void; close: () => void; } /** * Fuzzy file picker for a diff. Entries are indexed by position so two files * with the same path (a rename pair, say) still resolve to distinct rows. */ export declare const DiffFilePickerOverlay: ({ files, onSelect, close, }: DiffFilePickerOverlayProps) => ReactNode; //# sourceMappingURL=diff-file-picker.d.ts.map