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