import { BondsData, TrueBondPrices } from '../../types/bonds'; /** * Finds the highest TrueBondPrices element where userPoints is higher than points in the array. * @param userPoints - The user's points as a string representing a BigNumber. * @param bondData - Bond Data containing an array of TrueBondPrices to analyze. * @returns The highest TrueBondPrices element where userPoints is higher than the item's points, or `undefined` if none matches. */ export declare const findHighestTrueBondPrice: (userPoints?: string | null, bondData?: BondsData) => TrueBondPrices | undefined; export declare const findHighestTrueBondPrices: (userPoints?: string | null, trueBondPrices?: TrueBondPrices[]) => TrueBondPrices | undefined; /** * Finds the TrueBondPrices element with the highest points in the array, regardless of user points. * @param bondData - Bond Data containing an array of TrueBondPrices to analyze. * @returns The TrueBondPrices element with the highest points, or `undefined` if no data is available. */ export declare const findHighestTrueBondPriceUserAgnostic: (bondData?: BondsData) => TrueBondPrices | undefined;