import type { FastMCPSessionAuth, Tool } from "fastmcp"; import { z } from "zod"; declare const removeCollateralToolParams: z.ZodObject<{ bammAddress: z.ZodString; amount: z.ZodString; collateralToken: z.ZodOptional; collateralTokenSymbol: z.ZodOptional; }, "strip", z.ZodTypeAny, { amount: string; bammAddress: string; collateralToken?: string | undefined; collateralTokenSymbol?: string | undefined; }, { amount: string; bammAddress: string; collateralToken?: string | undefined; collateralTokenSymbol?: string | undefined; }>; export type RemoveCollateralToolParams = z.infer; export declare const removeCollateralTool: Tool; export {};