import { Buffer } from 'node:buffer';
declare const isBinary: (filePath: string, newFileContents?: Buffer | string) => boolean;
declare const binaryDiff: (existingFilePath: string, newFileContents?: Buffer) => string;
export { isBinary, binaryDiff };
