import type { Tool } from "fastmcp";
import { z } from "zod";
declare const withdrawToolParams: z.ZodObject<{
    bammAddress: z.ZodString;
    amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
    amount: string;
    bammAddress: string;
}, {
    amount: string;
    bammAddress: string;
}>;
export type WithdrawToolParams = z.infer<typeof withdrawToolParams>;
export declare const withdrawTool: Tool<undefined, typeof withdrawToolParams>;
export {};
