import { IConfig, IConfigProperty } from "./interfaces"; export declare const DEFAULT: IConfig; export declare const TLOU_QUOTES: { Ellie: string[]; Joel: string[]; }; export declare const LOCAL_DATA_DIR: string; export declare const CORE_STEP_DEFS_GLOB = "../../core/steps/definitions/**/*.js"; export declare const RESOURCES_DIR = "/resources"; export declare const PRETTIER_SETTINGS_FILE: string; export declare const CONFIG_LOCAL_TPL_FILE: string; export declare const CONFIG_LOCAL_OUT_FILE = "ellie.conf.ts"; export declare const CONFIG_WDIO_TPL_FILE: string; export declare const CONFIG_WDIO_OUT_FILE = "wdio.conf.js"; export declare const SAMPLES_DIR = "/samples"; export declare const SAMPLES_TS_CONFIG_FILE = "tsconfig.json"; export declare const CONFIG_HELPER_INTRO = "\n----------------------------------\nConfiguration Helper\n----------------------------------"; export declare const CONFIG_HELPER_SUCCESS_MESSAGE: string; export declare const SAMPLES_HELPER_SUCCESS_MESSAGE: string; export declare const SAMPLES_HELPER_TS_CONFIG_EXISTS_MESSAGE = "\nYou seem to have already created a tsconfig.json file.\nConsider adding the following:\n"; export declare const CONFIG_OPTIONS: IConfigProperty[]; export declare const CONFIG_INQUIRY: IConfigProperty[]; export declare const USAGE: string;