export interface RandomIntegerOptions { /** * Max value should be inclusive */ maxInclusive?: boolean; /** * Should be synchronously cryptographically secure */ forceCrypto?: boolean; } export declare function randomIntSync(min: number, max: number, options?: RandomIntegerOptions): number; export declare function randomInt(min: number, max: number, maxInclusive?: boolean): Promise; //# sourceMappingURL=randomInt.d.ts.map