/**
 * WWDC Video MCP Tool Handlers
 */
/**
 * List WWDC videos
 */
export declare function handleListWWDCVideos(year?: string, topic?: string, hasCode?: boolean, limit?: number): Promise<string>;
/**
 * Search WWDC content
 */
export declare function handleSearchWWDCContent(query: string, searchIn?: 'transcript' | 'code' | 'both', year?: string, language?: string, limit?: number): Promise<string>;
/**
 * Get WWDC video details
 */
export declare function handleGetWWDCVideo(year: string, videoId: string, includeTranscript?: boolean, includeCode?: boolean): Promise<string>;
/**
 * Get WWDC code examples
 */
export declare function handleGetWWDCCodeExamples(framework?: string, topic?: string, year?: string, language?: string, limit?: number): Promise<string>;
/**
 * Browse WWDC topics
 */
export declare function handleBrowseWWDCTopics(topicId?: string, includeVideos?: boolean, year?: string, limit?: number): Promise<string>;
/**
 * Find related WWDC videos
 */
export declare function handleFindRelatedWWDCVideos(videoId: string, year: string, includeExplicitRelated?: boolean, includeTopicRelated?: boolean, includeYearRelated?: boolean, limit?: number): Promise<string>;
//# sourceMappingURL=wwdc-handlers.d.ts.map