import type { AfterAll, BeforeEach, Errback, EvalScripts } from './types'; type Elements = HTMLCollectionOf | NodeListOf | Element | null; interface OptionalArgs { afterAll?: AfterAll; afterEach?: Errback; beforeEach?: BeforeEach; cacheRequests?: boolean; evalScripts?: EvalScripts; httpRequestWithCredentials?: boolean; renumerateIRIElements?: boolean; } declare const SVGInjector: (elements: Elements, { afterAll, afterEach, beforeEach, cacheRequests, evalScripts, httpRequestWithCredentials, renumerateIRIElements, }?: OptionalArgs) => void; export default SVGInjector;