import type { ProviderWithdrawableBalance } from '@lifi/perps-sdk'; import type { LtAccountAsset } from '../types/account.js'; /** * Split each held asset into the two routes a Lighter withdrawal can name: * spot draws on `balance` net of `locked_balance`, perps draws on * `margin_balance`. Routes with nothing left to draw are dropped; the * per-asset venue minimum is applied by the caller holding the asset registry. * * @public */ export declare const lighterWithdrawableBalances: (assets: LtAccountAsset[]) => ProviderWithdrawableBalance[]; //# sourceMappingURL=withdrawableBalances.d.ts.map