//#region src/services/p/prompt-builder.d.ts interface PromptSources { positionalArg?: string; flagPrompt?: string; files?: string[]; stdin?: boolean; warn?: (msg: string) => void; } /** * Build prompt from multiple sources */ declare function buildPrompt(sources: PromptSources): Promise; /** * Read from stdin */ declare function readStdin(): Promise; //#endregion export { PromptSources, buildPrompt, readStdin };