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