/** * Converts a data URI to a Blob object. * * @param dataURI - The data URI string to be converted. It should be in the format * `data:[][;base64],`. * @returns A Blob object representing the binary data of the input data URI. * * @example * ```typescript * const dataURI = "data:text/plain;base64,SGVsbG8sIFdvcmxkIQ=="; * const blob = dataURItoBlob(dataURI); * console.log(blob); // Blob { size: 13, type: "text/plain" } * ``` */ declare const dataURItoBlob: (dataURI: string) => Blob; export default dataURItoBlob;