import type { Address } from "viem"; import type { WalletService } from "./wallet.js"; export interface RepayParams { bammAddress: Address; borrowToken?: Address; borrowTokenSymbol?: string; amount: string; } export declare class RepayService { private walletService; constructor(walletService: WalletService); execute(params: RepayParams): Promise<{ txHash: string; }>; }