/**
 * Research by Topic Resource - Topic-specific research documents
 * URI Pattern: adr://research/{topic}
 */
import { URLSearchParams } from 'url';
import { ResourceGenerationResult } from './index.js';
export interface ResearchDocument {
    id: string;
    title: string;
    topic: string;
    path: string;
    content: string;
    lastModified: string;
    wordCount: number;
    size: number;
}
/**
 * Generate research by topic resource
 */
export declare function generateResearchByTopicResource(params: Record<string, string>, _searchParams: URLSearchParams): Promise<ResourceGenerationResult>;
//# sourceMappingURL=research-by-topic-resource.d.ts.map