/** * Generate a random number between 0 and 1. * * Uses ``crypto.getRandomValues`` but falls back to * the traditional ``Math.random``. */ export declare function float(): number;