#!/usr/bin/env node import { Command } from 'commander'; declare function createCliProgram(): Command; interface DoctorResult { errors: string[]; warnings: string[]; } declare function runDoctor(cwd: string, security?: boolean): DoctorResult; declare function createProject(projectName: string, template: string, options: { skipInstall: boolean; wextsDependency?: string; }): Promise; type ScaffoldGeneratorType = 'rpc' | 'service' | 'module' | 'entity' | 'guard' | 'config'; interface ScaffoldGeneratorOptions { type: ScaffoldGeneratorType; name?: string; targetRoot: string; force?: boolean; } declare function scaffoldGenerator(options: ScaffoldGeneratorOptions): Promise; export { type DoctorResult, createCliProgram, createProject, runDoctor, scaffoldGenerator };