interface IOptions { cwd: string; projectType: string; template: string; templateFramework: string; templateLanguage: string; } export default function ({ cwd, projectType, template, templateFramework, templateLanguage, }: IOptions): Promise; export {};