import SimpleModule from "lynx-framework/simple.module"; export interface MenuElement { id: number; icon: string; label: string; route: string; } export interface Settings { themeWorkingRoute: string; sidebarPath: string; navbarPath: string; footerPath: string; faviconPath: string; appletouchiconPath: string; title: string; logoutRoute: string; sidebar: { title: string; elements: MenuElement[]; activeElemenetId?: number; }; } export default class LightBootstrapAdminModule extends SimpleModule { static settings: Settings; get public(): string; get translation(): string; get views(): string; get middlewares(): string; }