import { ethers } from "ethers";
import type { CallbackType } from "../../../utils/tronweb/contractHelper";
import { LandId } from "../../../config/constants";
import { TransactionResponse } from "@ethersproject/providers";
export declare const lotteryGetPointsBalance: (landId: LandId, provider: ethers.providers.Provider, account: string, callback?: CallbackType | undefined) => Promise<string>;
export declare const lotteryPlayWithTicket: (landId: LandId, signer: ethers.Signer, type: "s" | "m", callback?: CallbackType | undefined) => Promise<TransactionResponse>;
export declare const lotteryGetTotalRewardInPool: (landId: LandId, provider: ethers.providers.Provider, callback?: CallbackType | undefined) => Promise<string>;
