import { TransactionInstruction, PublicKey } from '@solana/web3.js'; export interface UpdateRewardInfosAccounts { /** The liquidity pool for which reward info to update */ poolState: PublicKey; } /** * Update rewards info of the given pool, can be called for everyone * * # Arguments * * * `ctx`- The context of accounts * */ export declare function updateRewardInfos(accounts: UpdateRewardInfosAccounts): TransactionInstruction;