declare type PluginItem = { value: string; name: string; default?: boolean; }; export declare type Env = "http" | "lambda" | "alifunc"; export declare type Plugin = "inject" | "router" | "view" | "mva" | "pipe" | "filter" | "testing" | "static" | "swagger" | "jwt" | "core" | "cli" | "validator" | Env; export declare const allPlugins: PluginItem[]; export declare function isPlugin(name: string): boolean; export {};