export interface FieOptions { clientOptions: { BUILD_ENV?: string; port?: number; [name: string]: any; env?: string; install: boolean; }; clientArgs: any; } export declare enum ProjectType { mod = "halo-mod-component", formmod = "formmod", project = "project", mods = "halomods", material = "material", lowCodeMaterial = "lowCodeMaterial", sdk = "sdk" } 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; pageNamePrefix?: string; }