export interface FieOptions { clientOptions: { BUILD_ENV?: string; port?: number; [name: string]: any; }; } export declare enum ProjectType { mod = "halo-mod-component", project = "project", mods = "halomods", material = "material" } export declare enum DSL { rax = "rax", react = "react" } export declare enum Target { web = "web", miniapp = "miniapp", wechat = "wechat-miniprogram", byte = "bytedance-microapp" } export interface FieConfig { type: ProjectType; dsl: DSL; cdnHost?: { daily?: string; release?: string; }; targets: [Target]; web?: any; config?: { alias?: any; [name: string]: any; }; pluginDir?: string; }