import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface SetRewardParamsArgs {
    rewardIndex: number;
    emissionsPerSecondX64: BN;
    openTime: BN;
    endTime: BN;
}
export interface SetRewardParamsAccounts {
    authority: PublicKey;
    ammConfig: PublicKey;
    poolState: PublicKey;
    operationState: PublicKey;
    tokenProgram: PublicKey;
    tokenProgram2022: PublicKey;
}
export declare const layout: any;
export declare function setRewardParams(args: SetRewardParamsArgs, accounts: SetRewardParamsAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=setRewardParams.d.ts.map