import z from "zod";
import { Tool } from "../types.js";
declare const stopWatchingSchema: z.ZodObject<{
    contractId: z.ZodString;
    eventName: z.ZodString;
}, "strip", z.ZodTypeAny, {
    contractId: string;
    eventName: string;
}, {
    contractId: string;
    eventName: string;
}>;
export declare const stopWatchingTool: Tool<Record<string, unknown> | undefined, typeof stopWatchingSchema>;
export {};
