/** * Encode a string to a UTF-8 byte sequence. */ export declare function stringToBytes(input: string): Uint8Array; /** * Decode a string from a UTF-8 byte sequence. */ export declare function bytesToString(input: Uint8Array): string; //# sourceMappingURL=utf8.d.ts.map