import type { Address } from "viem"; import type { CreditAccountData, ILogger, OnchainSDK } from "../sdk/index.js"; /** * Given credit accounts, calculates new liquidation thresholds that needs to be set to drop account health factor a bit to make it eligible for partial liquidation * @param ca */ export declare function calcLiquidatableLTs(sdk: OnchainSDK, ca: CreditAccountData, factor?: bigint, logger?: ILogger): Promise>;