/**
 * Show Prompt Command
 * Displays a specific prompt by ID
 */
/**
 * Shows a specific prompt by ID
 * @param promptId - The ID of the prompt to show
 * @returns Whether the prompt was found and displayed
 */
declare const showPrompt: (promptId: string) => boolean;
export default showPrompt;
