import { Command } from '@oclif/core'; export declare function getTemplates(language?: string): { templatesPath: string; contractTemplatesPath: string; contractTemplatesList: { message: string; value: string; }[]; }; export default class PhalaContractNew extends Command { static description: string; static examples: string[]; static args: { contractName: import("@oclif/core/lib/interfaces/parser").Arg>; }; run(): Promise; }