import { IConfig, IConfigProperty } from "./interfaces"; export declare const DEFAULT: IConfig; export declare const CLI_DIR = "/cli"; export declare const RESOURCES_DIR = "/resources"; export declare const RESPONSE_MODULE_TPL_FILE: string; export declare const PRETTIER_SETTINGS_FILE: string; export declare const CONFIG_LOCAL_TPL_FILE: string; export declare const CONFIG_LOCAL_OUT_FILE = "fragile.conf.ts"; 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;