import type { ProblemSummary } from "./types.js"; export interface FindTopicProblemsInput { topic: string; limit?: number; excludeProblemIds?: string[]; } export interface FindTopicProblemsResult { topic: string; canonicalTopic?: string; queriesTried: string[]; items: ProblemSummary[]; } export declare function findTopicProblems(input: FindTopicProblemsInput, fetchImpl?: typeof fetch): Promise;