import { Buffer } from "node:buffer"; /** * True iff `buf` looks binary: a NUL (0x00) byte within the first 8000 bytes. * Matches git's heuristic so text/binary classification stays consistent. */ export declare function isBinary(buf: Buffer): boolean; //# sourceMappingURL=bytes.d.ts.map