export = isBinary;
/**
* @nameisBinary
*
* @synopsis
* isBinary(value any) -> boolean
*
* @description
* Determine whether a value is binary. This could be `true` for `TypedArray` or a Node.js `Buffer`.
*/declareconstisBinary: (arg: any) => arg is ArrayBufferView;