interface Window { $loadingBar: import('naive-ui').LoadingBarApi $dialog: import('naive-ui').DialogApi $message: import('naive-ui').MessageApi $notification: import('naive-ui').NotificationApi } declare const AMap: any declare const BMap: any declare module '*.vue' { import type { DefineComponent } from 'vue' const component: DefineComponent export default component } declare namespace NaiveUI { type ThemeColor = 'default' | 'error' | 'primary' | 'info' | 'success' | 'warning' } declare module '~icons/*' { import type { FunctionalComponent, SVGAttributes } from 'vue' const component: FunctionalComponent export default component } declare namespace Storage { interface Session { demoKey: string } interface Local { /* 存储用户信息 */ userInfo: ApiAuth.loginInfo /* 存储访问token */ accessToken: string /* 存储刷新token */ refreshToken: string /* 存储登录账号 */ loginAccount: any /* 存储当前语言 */ lang: App.lang } } declare namespace App { type lang = 'zhCN' | 'enUS' }