/** * Prompt the user for a yes/no confirmation in interactive mode. * * Behavior: * - If `isYesMode` is true → always returns true (auto-confirm). * - If `isCiMode` is true → always returns false (non-interactive). * - Otherwise → shows a prompt and waits for user input. * * @param message The message to display to the user. * @returns A promise that resolves to `true` if the user confirmed, otherwise `false`. */ export declare function confirmYesNo(message: string, { isCiMode, isYesMode }: { isCiMode: boolean; isYesMode: boolean; }): Promise; //# sourceMappingURL=prompts.d.ts.map