/** * CLI prompt utilities for secure password input */ /** * Prompt for password input (hidden) * * @param prompt - The prompt message * @returns The password entered by user */ export declare function promptPassword(prompt: string): Promise; /** * Prompt for text input (visible) * * @param prompt - The prompt message * @returns The text entered by user */ export declare function promptText(prompt: string): Promise;