type UseFaviconOptions = { defaultHref?: string | null; }; export declare function useFavicon(defaultHrefOrOptions?: string | null | UseFaviconOptions): { setFavicon: (href?: string | null) => void; resetFavicon: () => void; }; export type { UseFaviconOptions };