/** * Check whether the buffer is a CUR file. * * @param source - Input data to inspect. * @returns `true` when the source is a CUR file, `false` otherwise. * @private */ declare const isCur: (source: ArrayBuffer | Buffer) => boolean; export { isCur }; export default isCur; //# sourceMappingURL=is-cur.d.ts.map