/** * Modifies the array into another array that uniquely represents it and has length multiple of 4. */ export declare function adjustNumberArray(array: number[]): void; /** * Modifies the array into the array it was before `adjustNumberArray` was called on it. */ export declare function uncoverOriginalNumberArray(adjustedArray: number[]): void;