import { z } from 'zod'; import type { SolidWorksAPI } from '../solidworks/api.js'; export declare const analysisTools: ({ name: string; description: string; inputSchema: z.ZodObject<{ units: z.ZodDefault>; }, "strip", z.ZodTypeAny, { units: "kg" | "g" | "lb"; }, { units?: "kg" | "g" | "lb" | undefined; }>; handler: (args: any, swApi: SolidWorksAPI) => string | { mass: string; volume: string; surfaceArea: string; centerOfMass: { x: string; y: string; z: string; }; }; } | { name: string; description: string; inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; handler: (_args: any, swApi: SolidWorksAPI) => string | { dimensions: { width: string; height: string; depth: string; }; volume: string; note: string; diagonal?: undefined; } | { dimensions: { width: string; height: string; depth: string; }; volume: string; diagonal: string; note?: undefined; }; })[]; //# sourceMappingURL=analysis.d.ts.map