/**
 * Convert a Uint8Array to a number array
 * Compatible with Node 0.8+ (no Array.from)
 */
export declare function uint8ArrayToArray(uint8Array: Uint8Array): number[];
