import type { Address } from "viem"; import type { OnchainSDK } from "../OnchainSDK.js"; export interface IsDustOptions { sdk: OnchainSDK; token: Address; balance: bigint; creditManager: Address; /** * Dust threshold in USD, without decimals */ minBalanceUSD?: bigint; } /** * Checks if balance of token is dust, by checking getting usd prices from oracle * @param opts * @returns */ export declare function isDust(opts: IsDustOptions): boolean;