import { type Hash } from 'viem';
import { SeiAgentKit } from '../../agent';
export interface RepayTakaraParams {
    ticker: string;
    repayAmount: string;
}
/**
 * Repays borrowed tokens to the Takara Protocol
 * @param agent SeiAgentKit instance
 * @param params Parameters for repaying
 * @returns Transaction hash and amount repaid
 */
export declare function repayTakara(agent: SeiAgentKit, { ticker, repayAmount }: RepayTakaraParams): Promise<{
    txHash: Hash;
    repaidAmount: string;
}>;
//# sourceMappingURL=repay.d.ts.map