/** * @file storePrompts * @author Cuttle Cong * @date 2018/3/29 * @description */ import { Source } from '../types/Options'; import { Prompt } from '../types/TemplateConfig'; export declare function store(promptValues: object, prompts: Prompt[], { source, cacheDir }?: { source?: Source; cacheDir?: string | boolean; }): Promise; export declare function get({ source, prompts, cacheDir }?: { source?: Source; prompts?: Prompt[]; cacheDir?: string | boolean; }): Promise;