import { BetForNextSimulationRoundSetting, SimulationConfigRepresenting, NextSessionRoundPlayableDetermining } from "pokie";
export declare class SimulationConfig implements SimulationConfigRepresenting {
    static readonly DEFAULT_NUMBER_OF_ROUNDS: number;
    private numberOfRounds;
    private changeBetStrategy?;
    private playStrategy;
    setNumberOfRounds(value: number): void;
    getNumberOfRounds(): number;
    setPlayStrategy(playStrategy: NextSessionRoundPlayableDetermining): void;
    getPlayStrategy(): NextSessionRoundPlayableDetermining;
    setChangeBetStrategy(changeBetStrategy: BetForNextSimulationRoundSetting): void;
    getChangeBetStrategy(): BetForNextSimulationRoundSetting | undefined;
}
