import { Answers } from "prompts"; import { OnError } from "./enums"; export type PromptOptions = { name: string; description: string; errorBehavior: OnError; uuid: string; }; export type PartialPromptOptions = Partial; export declare function walkthrough(opts?: PartialPromptOptions): Promise; export declare function setName(name?: string): Promise>; export declare function setErrorBehavior(errorBehavior?: OnError): Promise>; export declare function confirm(dirName: string, packageJSON: { path: string; print: string; }, peprTSPath: string, skipPrompt?: boolean): Promise; //# sourceMappingURL=walkthrough.d.ts.map