import { z } from "zod";
declare const removeCollateralParamsSchema: z.ZodObject<{
    pairAddress: z.ZodString;
    amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
    amount: string;
    pairAddress: string;
}, {
    amount: string;
    pairAddress: string;
}>;
export declare const removeCollateralTool: {
    name: string;
    description: string;
    parameters: z.ZodObject<{
        pairAddress: z.ZodString;
        amount: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        amount: string;
        pairAddress: string;
    }, {
        amount: string;
        pairAddress: string;
    }>;
    execute: (args: z.infer<typeof removeCollateralParamsSchema>) => Promise<string>;
};
export {};
