import { PublicClient, WalletClient } from 'viem'; import { CollateralConfig, ProtocolConfig } from '../../types'; export declare const repay: ({ publicClient, walletClient, protocolConfig, collateral, address, repayAmt, totalCollAmt, totalDebtAmt, }: { publicClient: PublicClient; walletClient: WalletClient; protocolConfig: ProtocolConfig; collateral: CollateralConfig; address: `0x${string}`; repayAmt: bigint; totalCollAmt: bigint; totalDebtAmt: bigint; }) => Promise<`0x${string}`>; export declare const _repay: ({ publicClient, walletClient, protocolConfig, collateral, address, repayAmt, totalCollAmt, totalDebtAmt, }: { publicClient: PublicClient; walletClient: WalletClient; protocolConfig: ProtocolConfig; collateral: CollateralConfig; address: `0x${string}`; repayAmt: bigint; totalCollAmt: bigint; totalDebtAmt: bigint; }) => Promise<`0x${string}`>;