/** * Encodes a string by inverting the bytes and then reversing them. * *

This is an in-place operation. * * @param bytes the byte array to encode */ export declare function encodeString(bytes: Uint8Array): void; /** * Decodes a string by reversing the bytes and then inverting them. * *

This is an in-place operation. * * @param bytes the byte array to decode */ export declare function decodeString(bytes: Uint8Array): void; //# sourceMappingURL=string-encoding-utils.d.ts.map