import { Id } from "../id.js"; import { Await } from "../types.js"; export type Rando = Await>; export declare function getRando({ isNode }?: { isNode?: boolean; }): Promise<{ random: () => number; compare: (a: string, b: string) => boolean; randomId: () => Id; randomBuffer: (bytes: number) => ArrayBuffer; randomSample: (palette: T[]) => T; randomSequence: (length: number, palette: string[]) => string; }>;