import { TransactionEnvelope } from "@saberhq/solana-contrib"; import { PublicKey } from "@solana/web3.js"; import type { IUserAuthority } from "../interfaces"; import type { BmcGamesSDK } from "../sdk"; import type { BmcGamesProgram } from "../programs"; import * as anchor from "@project-serum/anchor"; export declare class UserWrapper implements IUserAuthority { readonly sdk: BmcGamesSDK; readonly address: String; readonly program: BmcGamesProgram; constructor(sdk: BmcGamesSDK, address: String); get provider(): import("@saberhq/solana-contrib").AugmentedProvider; claimUserReward({ rewardAmount, }: { rewardAmount: any; }): Promise; getUsersInfo(): Promise[]>; getUserInfo({ userWalletStr }: { userWalletStr: any; }): Promise<{}>; }