export declare function intToBytes(input: bigint, size: number, order?: "big" | "little"): Uint8Array;
export declare function intFromBytes(buffer: Uint8Array, order?: "big" | "little"): bigint;
export declare function concatUint8Arrays(arrays: Uint8Array[]): Uint8Array;