export declare class PromptHelper { /** * Prompts the user for confirmation with a timeout. */ getConfirmation(suggestion: string): Promise; } export declare function formatPromptMessage(message: string, suggestion?: string): string; export declare function formatSuggestion(suggestion: string): string;