///
declare type TTypesMap = {
Array8: number[];
Array16: number[];
Array32: number[];
Buffer: Buffer;
Uint8Array: Uint8Array;
Uint16Array: Uint16Array;
Uint32Array: Uint32Array;
};
export declare const secureRandom: (count: number, type: T) => TTypesMap[T];
export declare const randomBytes: (length: number) => Uint8Array;
export declare const randomSeed: (wordsCount?: number) => string;
export {};