import { Buffer } from "node:buffer"; //#region src/is-buffer.d.ts declare const isBufferExists: boolean; /** * Check if the provided value's type is `Buffer` */ declare const isBuffer: (value: unknown) => value is Buffer; //#endregion export { isBuffer, isBufferExists }; //# sourceMappingURL=is-buffer.d.mts.map