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