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