export type RandomSeed = number | string | null; /** * @description A deterministic pseudo-random number generator. Pass in the same seed and get the same pseudorandom number. * @see [Documentation](https://remotion.dev/docs/random) */ export declare const random: (seed: RandomSeed, dummy?: unknown) => number;