import { z } from 'zod'; import type { Tool } from '@modelcontextprotocol/sdk/types.js'; import type { WebSocketManager } from '../connection.js'; import type { GetAnimationsInput } from '../types.js'; export declare const getAnimationsSchema: z.ZodObject<{ identifier: z.ZodOptional; }, "strip", z.ZodTypeAny, { identifier?: string | undefined; }, { identifier?: string | undefined; }>; export type { GetAnimationsInput }; export declare const getAnimationsTool: Tool; export declare function handleGetAnimations(args: GetAnimationsInput, connection: WebSocketManager): Promise<{ animations: import("../types.js").AnimationInfo[]; totalAnimations: number; }>; //# sourceMappingURL=getAnimations.d.ts.map