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