import { StructuredTool } from "@langchain/core/tools"; import { Agent } from "../../../agent/Agents"; import { z } from "zod"; export declare class SolanaIQTextTool extends StructuredTool { private agent; schema: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>; name: string; description: string; constructor(agent: Agent, schema?: z.ZodObject<{ message: z.ZodString; }, "strip", z.ZodTypeAny, { message: string; }, { message: string; }>); protected _call(input: z.infer): Promise; } //# sourceMappingURL=IQTextInscription.tool.d.ts.map