import type { RequireAtLeastOne } from './types/records.js'; import type { Pretty } from './types/utils.js'; export type RandomIntOptions = Pretty>; export declare function randomInt(options?: RandomIntOptions): number; export declare function randomInt(min: number, max?: number): number;