import { RandomGenerator } from "./random_generator"; import type { AbstractRandom } from "../../core/util/random"; import type * as p from "../../core/properties"; export declare namespace ParkMillerLCG { type Attrs = p.AttrsOf; type Props = RandomGenerator.Props & { seed: p.Property; }; } export interface ParkMillerLCG extends ParkMillerLCG.Attrs { } export declare class ParkMillerLCG extends RandomGenerator { properties: ParkMillerLCG.Props; constructor(attrs?: Partial); generator(): AbstractRandom; } //# sourceMappingURL=park_miller_lcg.d.ts.map