import inquirer from 'inquirer'; import { ConfigGeneratorAnswers } from './interfaces'; export declare const NIGHTWATCH_TITLE = "\n _ _ _ _ _ _ _\n| \\ | |(_) | | | | | | | |\n| \\| | _ __ _ | |__ | |_ __ __ __ _ | |_ ___ | |__\n| . ` || | / _` || '_ \\ | __|\\ \\ /\\ / / / _` || __| / __|| '_ \\\n| |\\ || || (_| || | | || |_ \\ V V / | (_| || |_ | (__ | | | |\n\\_| \\_/|_| \\__, ||_| |_| \\__| \\_/\\_/ \\__,_| \\__| \\___||_| |_|\n __/ |\n |___/\n"; export declare const CONFIG_INTRO = "===============================\nNightwatch Configuration Wizard\n===============================\n\nSetting up Nightwatch in %s...\n"; export declare const EXAMPLE_TEST_FOLDER = "examples"; export declare const DEFAULT_FOLDER = "nightwatch"; export declare const CONFIG_FILE_JS = "./nightwatch.conf.js"; export declare const CONFIG_FILE_CJS = "./nightwatch.conf.cjs"; export declare const CONFIG_FILE_TS = "./nightwatch.conf.ts"; export declare const CONFIG_FILE_JSON = "./nightwatch.json"; export declare enum Runner { Cucumber = "cucumber", Mocha = "mocha", Js = "js" } export declare const AVAILABLE_CONFIG_FLAGS: string[]; export declare const BROWSER_CHOICES: { name: string; value: string; }[]; export declare const MOBILE_BROWSER_CHOICES: { name: string; value: string; }[]; export declare const MOBILE_PLATFORM_CHOICES: { name: string; value: string; }[]; export declare const isWebTestingSetup: (answers: ConfigGeneratorAnswers) => boolean | undefined; export declare const isAppTestingSetup: (answers: ConfigGeneratorAnswers) => boolean | undefined; export declare const isLocalMobileTestingSetup: (answers: ConfigGeneratorAnswers) => boolean | undefined; export declare const isRemoteMobileTestingSetup: (answers: ConfigGeneratorAnswers) => boolean | undefined; export declare const MOBILE_BROWSER_QUES: inquirer.QuestionCollection; export declare const MOBILE_PLATFORM_QUES: inquirer.QuestionCollection; export declare const UI_FRAMEWORK_QUESTIONS: { type: string; name: string; message: string; choices: { name: string; value: string; }[]; }; export declare const QUESTIONAIRRE: inquirer.QuestionCollection; export declare const CONFIG_DEST_QUES: inquirer.QuestionCollection;