/// /// import { PublicKey } from '@solana/web3.js'; import { SolanaClient } from '../../utils/clients/types'; import { FLPool } from './structs'; import { ParsedAccount } from '../../utils/solana'; export declare function getPdas(owner: string): PublicKey[]; export declare function getTokenStakePDA(owner: string): PublicKey; export declare function getLpTokenPrice(connection: SolanaClient, pool: ParsedAccount, oracles: string[], method: 'getCompoundingTokenPrice' | 'getLpTokenPrice'): Promise;