import React from "react"; export interface MenuModel extends MenuChildModel { children?: MenuChildModel[]; } export interface MenuChildModel { id?: string; title: string | React.ReactNode; label?: React.ReactNode; icon?: React.ReactNode | string; url?: string; menuId?: string; count?: number; onClick?: () => void; isOutside?: boolean; isChild?: boolean; }