/** * Assumes the provided array has length multiple of 4 and each element is a natural number from 0 to 255 (inclusive). */ export declare function paddedBytesToPrintableString(values: number[]): string; /** * Assumes the provided string has length multiple of 5 and each character is one of the 94 non-space printable ASCII characters. */ export declare function printableStringToPaddedBytes(string: string): number[];