import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { z } from "zod";
declare const SeiERC20TransferInputSchema: z.ZodObject<{
    amount: z.ZodString;
    recipient: z.ZodString;
    ticker: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    amount: string;
    recipient: string;
    ticker?: string | undefined;
}, {
    amount: string;
    recipient: string;
    ticker?: string | undefined;
}>;
export declare class SeiERC20TransferTool extends StructuredTool<typeof SeiERC20TransferInputSchema> {
    private readonly seiKit;
    name: string;
    description: string;
    schema: z.ZodObject<{
        amount: z.ZodString;
        recipient: z.ZodString;
        ticker: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        amount: string;
        recipient: string;
        ticker?: string | undefined;
    }, {
        amount: string;
        recipient: string;
        ticker?: string | undefined;
    }>;
    constructor(seiKit: SeiAgentKit);
    protected _call(input: z.infer<typeof SeiERC20TransferInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=transfer.d.ts.map