import { IconizzaAPIModule } from '../modules.js'; import '@iconizza/api-redundancy'; /** * Get fetch function */ type FetchType = typeof fetch; /** * Fetch function */ declare let fetchModule: FetchType | undefined; /** * Set custom fetch() function */ declare function setFetch(fetch: unknown): void; /** * Get fetch() function. Used by Icon Finder Core */ declare function getFetch(): typeof fetchModule; /** * Export module */ declare const fetchAPIModule: IconizzaAPIModule; export { fetchAPIModule, getFetch, setFetch };