interface CreateOptions { installNodemodules?: boolean; } export default class Project { static get defaultCreateOptions(): CreateOptions; static create(projectPath: string, options: CreateOptions): Promise; static build(): Promise; static getProjectName(): Promise; } export {};