import { NetworkIdType, TokenPriceSource } from '@sonarwatch/portfolio-core'; type PoolUnderlying = { address: string; reserveAmount: number; price: number; decimals: number; }; type LpDetails = { address: string; decimals: number; supply: number; }; /** * @deprecated * This function has been deprecated. Use the new getLpTokenSource instead. */ export default function getLpTokenSourceOld(networkId: NetworkIdType, sourceId: string, platformId: string, lpDetails: LpDetails, poolUnderlyings: PoolUnderlying[], elementName?: string, liquidityName?: string): TokenPriceSource; export {};