export interface Base64Data { data: string; mimeType: string; } export declare class BinaryUtils { /** * Converts a URL (data:, http:, or local path) to a base64 string and mime type. */ static toBase64(url: string): Promise; /** * Converts a Base64Data object to a Blob. */ static base64ToBlob(binary: Base64Data): Blob; /** * Converts a Base64Data object to a Buffer. */ static base64ToBuffer(binary: Base64Data): Buffer; private static guessMimeType; } //# sourceMappingURL=Binary.d.ts.map