/** * Creates a counter that starts at 1 and wraps after surpassing `maxValue`. * @param maxValue The maximum value that the counter can reach. Must a number where all bits are set to 1. * @param randomSeed Whether the initial value should be randomized. Default: `false`. */ export declare function createWrappingCounter(maxValue: number, randomSeed?: boolean): () => number; //# sourceMappingURL=wrappingCounter.d.ts.map