import { FunctionComponent } from 'react'; export interface FileTreeExplorerProps { readonly files: string[]; readonly selected: string; readonly onSelect: (file: string) => void; readonly changedFiles?: Set; } export declare const FileTreeExplorer: FunctionComponent; //# sourceMappingURL=file-tree.d.ts.map