import { StructuredTool } from "langchain/tools"; import { Agent } from "../../../agent/Agents"; import { z } from "zod"; export declare class PerpCloseTradeTool extends StructuredTool { private agent; schema: z.ZodObject<{ tradeMint: z.ZodNullable>; price: z.ZodNullable>; side: z.ZodEffects; }, "strip", z.ZodTypeAny, { side: "long" | "short"; tradeMint?: string | null | undefined; price?: number | null | undefined; }, { side: string; tradeMint?: string | null | undefined; price?: number | null | undefined; }>; name: string; description: string; constructor(agent: Agent, schema?: z.ZodObject<{ tradeMint: z.ZodNullable>; price: z.ZodNullable>; side: z.ZodEffects; }, "strip", z.ZodTypeAny, { side: "long" | "short"; tradeMint?: string | null | undefined; price?: number | null | undefined; }, { side: string; tradeMint?: string | null | undefined; price?: number | null | undefined; }>); protected _call(input: z.infer): Promise; } //# sourceMappingURL=close_perp.tool.d.ts.map