import { controllerResponse } from "../utilities/helpers/response.helper";
export interface menuControllerResponse extends controllerResponse {
    data?: menuResponseData[];
}
export interface menuResponseData {
    key: string;
    path: string;
    isExternalLink?: boolean;
    title: string;
    icon: string;
    type: string;
    subMenu: menuResponseData[];
}
