import { ElementType } from "react"; export interface ISidebarLink { title: string; path: string; icon?: ElementType | string; children?: ISidebarLink[]; }