/** * YouTube Subtitle Fetching Tool */ export declare const fetchYoutubeSubtitles: { name: string; description: string; parameters: { type: string; properties: { url: { type: string; description: string; }; format: { type: string; enum: string[]; default: string; description: string; }; lang: { type: string; description: string; }; }; required: string[]; }; run(args: { url: string; format?: string; lang?: string; }): Promise<{ content: { type: "text"; text: string; }[]; isError?: undefined; } | { content: { type: "text"; text: string; }[]; isError: boolean; }>; }; //# sourceMappingURL=fetchYoutubeSubtitles.d.ts.map