import { handleGetAnimeComponent } from './components/get-anime-component.js'; import { handleListAnimeComponents } from './components/list-anime-components.js'; import { handleGetAnimeExample } from './examples/get-anime-example.js'; import { handleSearchAnimeExamples } from './examples/search-anime-examples.js'; import { handleGetAnimeDocs } from './repository/get-anime-docs.js'; export declare const toolHandlers: { get_anime_component: typeof handleGetAnimeComponent; list_anime_components: typeof handleListAnimeComponents; get_anime_example: typeof handleGetAnimeExample; search_anime_examples: typeof handleSearchAnimeExamples; get_anime_docs: typeof handleGetAnimeDocs; }; export declare const toolSchemas: { get_anime_component: { componentName: import("zod").ZodString; }; list_anime_components: { category: import("zod").ZodOptional; }; get_anime_example: { exampleType: import("zod").ZodString; }; search_anime_examples: { query: import("zod").ZodString; }; get_anime_docs: { topic: import("zod").ZodString; }; }; export declare const tools: { get_anime_component: { name: string; description: string; inputSchema: { type: string; properties: { componentName: import("zod").ZodString; }; required: string[]; }; }; list_anime_components: { name: string; description: string; inputSchema: { type: string; properties: { category: import("zod").ZodOptional; }; }; }; get_anime_example: { name: string; description: string; inputSchema: { type: string; properties: { exampleType: import("zod").ZodString; }; required: string[]; }; }; search_anime_examples: { name: string; description: string; inputSchema: { type: string; properties: { query: import("zod").ZodString; }; required: string[]; }; }; get_anime_docs: { name: string; description: string; inputSchema: { type: string; properties: { topic: import("zod").ZodString; }; required: string[]; }; }; }; //# sourceMappingURL=index.d.ts.map