import { PromptOptionConfig, PromptProvider } from "./prompt-types.mjs"; import { InternalOptionConfig } from "@cli-forge/parser"; //#region src/lib/resolve-prompts.d.ts /** * Collects options that need prompting, matches them to providers, * executes prompts, and returns the prompted values. */ declare function resolvePrompts(opts: { configuredOptions: Record; configuredImplies: Record>; promptConfigs: Map>; providers: PromptProvider[]; currentArgs: Record; }): Promise>; //#endregion export { resolvePrompts }; //# sourceMappingURL=resolve-prompts.d.mts.map