import { CLICommand } from '@coveo/cli-commons/command/cliCommand'; export default class React extends CLICommand { static templateName: string; static cliPackage: string; /** * "You’ll need to have Node 18.18.1 or later version on your local development machine" * https://github.com/facebook/create-react-app#creating-an-app */ static requiredNodeVersion: string; static description: string; static examples: string[]; static flags: { version: import("@oclif/core/lib/interfaces").OptionFlag; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise; private setupEnvironmentVariables; private createProject; private runReactCliCommand; private get configuration(); }