import { SubtleCrypto } from './SubtleCrypto'; type TypedArray = Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | BigInt64Array | BigUint64Array | Float32Array | Float64Array; export declare class Crypto { get subtle(): SubtleCrypto; randomUUID(): any; getRandomValues(typedArray: Exclude): Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | BigInt64Array | BigUint64Array; } export {};