import type { uint64_t } from '../prelude'; import type { IPrng64 } from './prng'; /** Thrust PRNG class */ export declare class Thrust implements IPrng64 { state: uint64_t; constructor(seed: uint64_t); /** Return a pseudorandom uint64. */ randomUint64(): uint64_t; }