import React from "react"; interface IOpenFilePanel { openedFiles: any; filetree: any; onPathChange: (key: string) => void; currentPath?: string; onCloseFile: (key: string) => void; } declare const OpenFilePanel: React.FC; export default OpenFilePanel;