import type { ProblemSummary } from "./types.js"; export interface RecommendProblemsInput { topic?: string; painPoint?: string; currentProblemId?: string; limit?: number; } export interface RecommendProblemsResult { topic?: string; painPoint?: string; searchHints: string[]; items: ProblemSummary[]; } export declare function recommendProblems(input: RecommendProblemsInput): RecommendProblemsResult;