/** * string to ArrayBuffer * https://developers.google.com/web/updates/2012/06/How-to-convert-ArrayBuffer-to-and-from-String * @export * @param {string} str - string * @returns {ArrayBuffer} */ export declare function strToArrayBuffer(str: string): ArrayBuffer;