/** Lightweight interface used throughout the codebase for deterministic RNG. */
export interface RandomStream {
    /** Float in [0, 1). */
    rand(): number;
    /** Integer in [0, max). */
    randInt(max: number): number;
}
export declare function make_random_stream(seed?: number): RandomStream;
//# sourceMappingURL=index.d.ts.map