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