export declare class ApiGenerator { name: string; chaincode: string; chaincodeConfigFile: string; readonly controllers: { [k: string]: any; }[]; root: string; constructor(name: string, chaincode: string, chaincodeConfigFile: string); generate(): Promise; enrichApiOptionsWithParams(config: any): Promise; private getParams; private copyTsConfig; private copyAppTs; private copyPackageJson; private copyPm2ConfigJson; }