import { IGameSessionSimulationModel } from "./IGameSessionSimulationModel";
import { IReelGameWithFreeGamesSession } from "../session/videogames/reelgames/IReelGameWithFreeGamesSession";
export declare class ReelGameWithFreeGamesSessionSimulationModel implements IGameSessionSimulationModel {
    private readonly _session;
    private readonly _baseSession;
    constructor(session: IReelGameWithFreeGamesSession);
    getRtp(): number;
    getTotalBetAmount(): number;
    getTotalReturnAmount(): number;
    updateTotalBetBeforePlay(): void;
    updateTotalReturnAfterPlay(): void;
}
