import { StyleProps, WithFalse } from "../typings"; export interface Env { /** * @description 开发环境 */ dev: string; /** * @description 测试环境 */ test: string; /** * @description 预生产环境 */ pre: string; } export declare const EnvTagColor: Env; export declare type EnvName = keyof Env; export interface AppEnvProps extends StyleProps { /** * @description 环境名称 * @default false */ name?: WithFalse; /** * @description 自定义颜色 */ color?: string; /** * 额外提示信息 */ tips?: string; } declare const _default: (import("vue").FunctionalComponent> & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; } & ((app: import("vue").App, ...options: any[]) => any) & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; }) | (import("vue").FunctionalComponent> & { install?: ((app: import("vue").App, ...options: any[]) => any) | undefined; } & { install: (app: import("vue").App, ...options: any[]) => any; }); export default _default;