import { z } from "zod";
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
declare const SeiRepayTakaraInputSchema: z.ZodObject<{
    ticker: z.ZodString;
    repayAmount: z.ZodString;
}, "strip", z.ZodTypeAny, {
    ticker: string;
    repayAmount: string;
}, {
    ticker: string;
    repayAmount: string;
}>;
/**
 * LangChain tool for repaying borrowed Takara tokens
 */
export declare class SeiRepayTakaraTool extends StructuredTool<typeof SeiRepayTakaraInputSchema> {
    private readonly seiKit;
    name: string;
    description: string;
    schema: z.ZodObject<{
        ticker: z.ZodString;
        repayAmount: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        ticker: string;
        repayAmount: string;
    }, {
        ticker: string;
        repayAmount: string;
    }>;
    constructor(seiKit: SeiAgentKit);
    protected _call({ ticker, repayAmount }: z.infer<typeof SeiRepayTakaraInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=repay.d.ts.map