/// 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 { ProductV1, ProductV2 } from '@trailervote/media-types/application/vnd.trailervote.product'; /** * Fetch an external product * * @param {{ net: Response }} net for locals access * @param {URL} product to fetch * @param {String} options method to call URL with */ export declare function fetch(net: Readonly, product: Readonly, options?: Readonly): Promise>; export declare const fetchProduct: typeof fetch;