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, BmcGamesData, BmcUsersData } from "../../programs"; 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; findPdaAddress(pda_string: String): Promise; fetchBmcGames(address: String): Promise; findUserPDA(seed: String, userWallet: PublicKey, usersPDA: PublicKey): Promise; fetchBmcUsers(address: String): Promise; claimUserReward({ rewardAmount, }: { rewardAmount: any; }): Promise; }