import { SmartModel } from '../models/smartModel'; export declare class SmartRouterModels extends SmartModel { name: string; chaincodeName: string; projectName: string; controllers: { [k: string]: any; }[]; ignoreConvention?: boolean; constructor(name: string, chaincodeName: string, projectName: string, controllers: { [k: string]: any; }[], ignoreConvention?: boolean); recompile(): void; save(): Promise; readonly chaincodeClientFolder: string; readonly applicationName: string; readonly templateFile: string; readonly filePath: string; private getMethods; private getDTO; }