import { PackageManager } from "./utils.js"; import prompts from "prompts"; //#region src/index.d.ts interface SuccessOutputOptions { directoryName: string; pkgManager: PackageManager; depsInstalled: boolean; skillsInstalled: boolean; skillsError?: string; } declare function buildSuccessOutput({ directoryName, pkgManager, depsInstalled, skillsInstalled, skillsError }: SuccessOutputOptions): string; interface PromptConfig { cliDirectory?: string; cliTemplate?: string; skipSkills: boolean; cliGlobal: boolean; nonInteractive: boolean; templates: string[]; } declare function buildPromptQuestions({ cliDirectory, cliTemplate, skipSkills, cliGlobal, nonInteractive, templates }: PromptConfig): prompts.PromptObject[]; //#endregion export { buildPromptQuestions, buildSuccessOutput }; //# sourceMappingURL=index.d.ts.map