import { handleGetMotionComponent } from './components/get-motion-component.js'; import { handleListMotionComponents } from './components/list-motion-components.js'; import { handleGetMotionExample } from './examples/get-motion-example.js'; import { handleSearchMotionExamples } from './examples/search-motion-examples.js'; import { handleGetMotionDocs } from './repository/get-motion-docs.js'; export declare const toolHandlers: { get_motion_component: typeof handleGetMotionComponent; list_motion_components: typeof handleListMotionComponents; get_motion_example: typeof handleGetMotionExample; search_motion_examples: typeof handleSearchMotionExamples; get_motion_docs: typeof handleGetMotionDocs; }; export declare const toolSchemas: { get_motion_component: { componentName: { type: string; description: string; }; }; list_motion_components: { category: { type: string; description: string; }; }; get_motion_example: { exampleType: { type: string; description: string; }; }; search_motion_examples: { query: { type: string; description: string; }; }; get_motion_docs: { topic: { type: string; description: string; }; }; }; export declare const tools: { get_motion_component: { name: string; description: string; inputSchema: { type: string; properties: { componentName: { type: string; description: string; }; }; required: string[]; }; }; list_motion_components: { name: string; description: string; inputSchema: { type: string; properties: { category: { type: string; description: string; }; }; }; }; get_motion_example: { name: string; description: string; inputSchema: { type: string; properties: { exampleType: { type: string; description: string; }; }; required: string[]; }; }; search_motion_examples: { name: string; description: string; inputSchema: { type: string; properties: { query: { type: string; description: string; }; }; required: string[]; }; }; get_motion_docs: { name: string; description: string; inputSchema: { type: string; properties: { topic: { type: string; description: string; }; }; required: string[]; }; }; }; //# sourceMappingURL=index.d.ts.map