/** * Given a string, return it as a blob * NOTE: USE objectToJsonBlob if you're saving a JSON resource!!! * NOTE: This is not currently supported in Node * @param {string} the string */ export declare function stringToBlob(s: string, type?: string): Blob;