import { Tool } from '@modelcontextprotocol/sdk/types.js'; import { FindSourcesInput } from '../types/index.js'; export declare class FindSourcesTool { constructor(); getToolDefinition(): Tool; execute(input: FindSourcesInput): Promise<{ success: boolean; message: string; sources?: Array<{ url: string; title?: string; description?: string; category?: string; }>; searchTime?: number; }>; } //# sourceMappingURL=FindSourcesTool.d.ts.map