import RNG, { RNGCapture } from "./RNG";
export default class RandomNumber {
    private readonly rng;
    private readonly value;
    private readonly capturedRNG;
    constructor(rng: RNG, value: number);
    get(): number;
    getRNG(): RNG;
    getCapturedRNG(): RNGCapture;
}
//# sourceMappingURL=RandomNumber.d.ts.map