import type { IdeaContext, IdeaDiscoveryMethod, IdeaSuggestion } from './types.js'; /** * Display the idea mode welcome banner */ export declare function showIdeaWelcome(): void; /** * Ask how the user wants to discover ideas */ export declare function askDiscoveryMethod(): Promise; /** * Ask for user's skills for skill-based suggestions */ export declare function askUserSkills(): Promise; /** * Ask for the problem the user wants to solve */ export declare function askUserProblem(): Promise; /** * Display brainstorm results */ export declare function showBrainstormResults(ideas: IdeaSuggestion[]): void; /** * Ask user to select an idea */ export declare function selectIdea(ideas: IdeaSuggestion[]): Promise; /** * Build context from user preferences */ export declare function buildIdeaContext(): Promise; /** * Show loading message for idea generation */ export declare function showIdeaLoading(method: IdeaDiscoveryMethod): string; //# sourceMappingURL=idea-ui.d.ts.map