import type { Prng, RandomOptions } from "./_types.js"; export type { Prng, RandomOptions }; /** * Generates a random number between the provided minimum and maximum values. * * The number is in the range `[min, max)`, i.e. `min` is included but `max` is excluded. * * @experimental **UNSTABLE**: New API, yet to be vetted. * * @param min The minimum value (inclusive) * @param max The maximum value (exclusive) * @param options The options for the random number generator * @returns A random number between the provided minimum and maximum values * * @example Usage * ```ts no-assert * import { randomBetween } from "@std/random"; * * randomBetween(1, 10); // 6.688009464410508 * randomBetween(1, 10); // 3.6267118101712006 * randomBetween(1, 10); // 7.853320239013774 * ``` */ export declare function randomBetween(min: number, max: number, options?: RandomOptions): number; //# sourceMappingURL=between.d.ts.map