import { DesktopFaviconReport, DesktopSingleReport, Fetcher } from "../types"; import { HTMLElement } from 'node-html-parser'; export declare const PngFaviconFileSize = 96; export declare const checkSvgFavicon: (baseUrl: string, head: HTMLElement | null, fetcher?: Fetcher) => Promise; export declare const checkSvgFaviconFile: (baseUrl: string, url: string, fetcher: Fetcher) => Promise; export declare const checkPngFavicon: (baseUrl: string, head: HTMLElement | null, fetcher?: Fetcher) => Promise; export declare const checkDesktopFavicon: (baseUrl: string, head: HTMLElement | null, fetcher?: Fetcher) => Promise;