export declare function printWelcomeMessage(): Promise<void>;
export declare function printSuggestedCommands(projectName: string): void;
export declare function createProject(projectName: string, templateName?: string, destination?: string): Promise<any>;
export declare function createConfirmationPrompt(name: string, message: string): any;
export declare function installDependencies(packageManager: string, args: string[], location?: string): Promise<boolean>;
