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