import type { FastMCPSessionAuth, Tool } from "fastmcp"; import { z } from "zod"; declare const repayToolParams: z.ZodObject<{ bammAddress: z.ZodString; amount: z.ZodString; borrowToken: z.ZodOptional; borrowTokenSymbol: z.ZodOptional; }, "strip", z.ZodTypeAny, { amount: string; bammAddress: string; borrowToken?: string | undefined; borrowTokenSymbol?: string | undefined; }, { amount: string; bammAddress: string; borrowToken?: string | undefined; borrowTokenSymbol?: string | undefined; }>; export type RepayToolParams = z.infer; export declare const repayTool: Tool; export {};