import type { IOptionLoader } from "../Interfaces/IOptionLoader"; import type { IValueWithRandom } from "../Interfaces/IValueWithRandom"; import { Random } from "./Random"; import type { RangeValue } from "../../Types/RangeValue"; import type { RecursivePartial } from "../../Types/RecursivePartial"; export declare class ValueWithRandom implements IValueWithRandom, IOptionLoader { random: Random; value: RangeValue; constructor(); load(data?: RecursivePartial): void; }