import * as React from 'react'; declare type PropsT = { sidebarOpen: boolean; menuItems: { name: string; icon: string; link: string; }[]; height: number; }; declare const SideBar: React.FC; export default SideBar;