import React from 'react'; import './DashboardAppBar.scss'; interface DashboardAppBarProps { title: string; addClick: () => any; refreshClick: () => any; toggleDarkMode?: () => any; downloadHandler: () => any; saveHandler: () => any; } declare const DashboardAppBar: React.FC; export default DashboardAppBar;