import React from 'react'; import { CodeBlockStatus } from '../../common/types'; export interface FileChange { path: string; additions: number; deletions: number; status: CodeBlockStatus; } interface FileListDisplayProps { files: FileChange[]; hideActions?: boolean; onFileClick: (path: string) => void; onRejectAll: () => void; onAcceptAll: () => void; } export declare const FileListDisplay: React.FC; export {}; //# sourceMappingURL=ChangeList.d.ts.map