import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface RefreshUserStateAccounts {
    userState: PublicKey;
    farmState: PublicKey;
    scopePrices: PublicKey;
}
export declare function refreshUserState(accounts: RefreshUserStateAccounts, programId?: PublicKey): TransactionInstruction;
