import { CommandLineOptions } from '../../Command/commandDefinition'; import { OPTION_LIST } from './customScriptGenerateOptions'; /** * Prompts the user for the parameters needed to generate a custom script. */ export declare function askForParameters(options?: CommandLineOptions, skipConfirmation?: boolean): Promise<{ targetDir: string; name: string; description: string; dangerLevel: string; }>; /** * Downloads the latest version of the boilerplate code from the GitHub repository. */ export declare function downloadBoilerplateCode(targetDir: string): Promise;