import { z } from "zod";
declare const AddAgentLogParamsSchema: z.ZodObject<{
    agentTokenContract: z.ZodString;
    content: z.ZodString;
    txHash: z.ZodOptional<z.ZodString>;
    chainId: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
    agentTokenContract: string;
    content: string;
    txHash?: string | undefined;
    chainId?: number | undefined;
}, {
    agentTokenContract: string;
    content: string;
    txHash?: string | undefined;
    chainId?: number | undefined;
}>;
export declare const addAgentLogTool: {
    name: string;
    description: string;
    parameters: z.ZodObject<{
        agentTokenContract: z.ZodString;
        content: z.ZodString;
        txHash: z.ZodOptional<z.ZodString>;
        chainId: z.ZodOptional<z.ZodNumber>;
    }, "strip", z.ZodTypeAny, {
        agentTokenContract: string;
        content: string;
        txHash?: string | undefined;
        chainId?: number | undefined;
    }, {
        agentTokenContract: string;
        content: string;
        txHash?: string | undefined;
        chainId?: number | undefined;
    }>;
    execute: (args: z.infer<typeof AddAgentLogParamsSchema>) => Promise<string>;
};
export {};
