import { ProjectProps } from '../interfaces';
interface HistoryPanelProps extends ProjectProps {
name?: string;
searchPath: string;
ID: string;
}
declare function HistoryPanel(props: HistoryPanelProps): import("react/jsx-runtime").JSX.Element;
export default HistoryPanel;