export declare const requireFromString: (src: string, filename?: string) => any; /** 将字符串转化为驼峰写法 */ export declare const camelCase: (str: string, firstLetterUpperCase?: boolean) => string; /** 判断一个类型字符串(interface 字符串)是否全部为可选的 */ export declare const isAllOptional: (interfaceString: string) => boolean; export declare const formatCode: (code: string) => Promise;