import { ISystems, Interface } from "../types"; /** * 生成 index.js | index.ts */ export declare function createBaseIndexStr(codeType: "Javascript" | "Typescript", info: any): string; /** 生成 systems/index.ts */ export declare function createSystemsIndexStr(codeType: "Javascript" | "Typescript", systems: ISystems[]): string; /** 生成 system/index.ts*/ export declare function createSystemStr(codeType: "Javascript" | "Typescript", system: ISystems): string; /** 生成 system/model.ts */ export declare function createSystemModelStr(system: ISystems): Promise; /** 生成 IResponseTypes */ export declare function createResponseTypes(interfaces: Array): string; /** 生成IRequestTypes */ export declare function createRequestTypes(interfaces: Array): string;