import { MenuModel, SideBarMenuModel } from "../models"; interface GetMenusProps { name: string; menus: SideBarMenuModel[]; defaultMenu: string; } export declare class LayoutService { static getMenus: (data: GetMenusProps) => MenuModel[]; static getPlatform: (customNavigator?: Navigator) => "Chrome" | "Firefox" | "Safari" | "" | "iOS"; } export {};