/** * Consolidated Math Management Tool * Replaces 5 separate tools: dice_roll, probability_calculate, algebra_solve, algebra_simplify, physics_projectile */ import { z } from 'zod'; import { McpResponse } from '../../utils/action-router.js'; import { SessionContext } from '../types.js'; export declare const MathManageTool: { name: string; description: string; inputSchema: z.ZodObject<{ action: z.ZodString; expression: z.ZodOptional; seed: z.ZodOptional; target: z.ZodOptional; comparison: z.ZodOptional>; equation: z.ZodOptional; variable: z.ZodOptional; velocity: z.ZodOptional; angle: z.ZodOptional; height: z.ZodOptional; gravity: z.ZodOptional; exportFormat: z.ZodOptional>; }, "strip", z.ZodTypeAny, { action: string; variable?: string | undefined; target?: number | undefined; seed?: string | undefined; height?: number | undefined; angle?: number | undefined; expression?: string | undefined; comparison?: "gte" | "lte" | "eq" | "gt" | "lt" | undefined; exportFormat?: "latex" | "plaintext" | "json" | "markdown" | undefined; equation?: string | undefined; velocity?: number | undefined; gravity?: number | undefined; }, { action: string; variable?: string | undefined; target?: number | undefined; seed?: string | undefined; height?: number | undefined; angle?: number | undefined; expression?: string | undefined; comparison?: "gte" | "lte" | "eq" | "gt" | "lt" | undefined; exportFormat?: "latex" | "plaintext" | "json" | "markdown" | undefined; equation?: string | undefined; velocity?: number | undefined; gravity?: number | undefined; }>; }; export declare function handleMathManage(args: unknown, ctx: SessionContext): Promise; //# sourceMappingURL=math-manage.d.ts.map