import type { RandomSource } from "./index.js"; export declare class SystemRandomSource implements RandomSource { isAvailable: boolean; isInstantiated: boolean; constructor(); randomBytes(length: number): Uint8Array; }