/** * 检查输入值是否为 Blob * * @example * * isBlob(new Blob()); //=>true */ export declare function isBlob(value: any): value is Blob;