import { PublicKey, TransactionInstruction } from '@solana/web3.js'; import { OraclePriceOnChain } from '../../layouts/oracle'; export declare function updateTokenPricesIx(params: { keeper: PublicKey; basket: PublicKey; rebalanceIntent: PublicKey; basketRebalanceIntent?: PublicKey; lookupTable0: PublicKey; lookupTable1: PublicKey; tokenIndices: number[]; additionalOracleAccounts: PublicKey[]; basketMint?: PublicKey; }): TransactionInstruction; export declare function updateTokenPricesCustomIx(params: { manager: PublicKey; basket: PublicKey; tokenIndices: number[]; tokenPrices: OraclePriceOnChain[]; }): TransactionInstruction;