/// import { URL } from 'url'; import { FetchInjection } from './fetch_injection'; import { FetchMethod } from './fetch_method'; import { FetchOptions } from './fetch_options'; import { FetchResponse } from './fetch_response'; import { ProductImageV1 } from '@trailervote/media-types/application/vnd.trailervote.product.image'; /** * Fetch an external product image * * @param {{ net: Response }} net for locals access * @param {URL|string} image to fetch * @param {FetchMethod|FetchOptions} options method to call URL with */ export declare function fetch(net: Readonly, image: Readonly, options?: Readonly): Promise>; export declare const fetchProductImage: typeof fetch;