/** * Turn a UTF-8 encoded string into a byte array * @param s - string to convert */ export declare function toBytes(s?: string): Uint8Array; /** * Turn a byte array into a UTF-8 encoded string * @param u - byte array to convert to string */ export declare function fromBytes(u?: Uint8Array): string;