export declare enum PLATFORM { WEAPP = "weapp", H5 = "h5", ALIPAY = "alipay" } export interface Config { /** 保存地址 */ save_dir: string; /** 是否使用typescript */ use_typescript?: boolean; /** 编译平台 */ platforms: PLATFORM[]; /** 是否使用rpx */ use_rpx: boolean; /** 设计稿宽度 */ design_width?: string | number; /** 需删除的图标前缀 */ trim_icon_prefix: string; /** 默认图标font-size */ default_icon_size: number; /** 本地保存svg图地址 */ local_svgs: string; } export declare const getConfig: (argv?: string[] | undefined) => Config;