import { NetworkIdType, TokenPriceSource, SourceRef } from '@sonarwatch/portfolio-core'; import { PoolUnderlying } from './getLpUnderlyingTokenSource'; export type LpDetails = { address: string; decimals: number; supply: number; }; export type GetLpTokenSourceParams = { networkId: NetworkIdType; sourceId: string; platformId: string; lpDetails: LpDetails; poolUnderlyings: PoolUnderlying[]; elementName?: string; liquidityName?: string; priceUnderlyings?: boolean; sourceRefs?: SourceRef[]; link?: string; }; export declare function getLpTokenSource(params: GetLpTokenSourceParams): TokenPriceSource[];