import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { z } from "zod";
declare const SwapInputSchema: z.ZodObject<{
    amount: z.ZodString;
    tokenInTicker: z.ZodString;
    tokenOutTicker: z.ZodString;
}, "strip", z.ZodTypeAny, {
    amount: string;
    tokenInTicker: string;
    tokenOutTicker: string;
}, {
    amount: string;
    tokenInTicker: string;
    tokenOutTicker: string;
}>;
export declare class SeiSwapTool extends StructuredTool<typeof SwapInputSchema> {
    private readonly seiKit;
    name: string;
    description: string;
    schema: z.ZodObject<{
        amount: z.ZodString;
        tokenInTicker: z.ZodString;
        tokenOutTicker: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        amount: string;
        tokenInTicker: string;
        tokenOutTicker: string;
    }, {
        amount: string;
        tokenInTicker: string;
        tokenOutTicker: string;
    }>;
    constructor(seiKit: SeiAgentKit);
    protected _call(input: z.infer<typeof SwapInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=swap.d.ts.map