///
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 { ProductVideoV1 } from '@trailervote/media-types/application/vnd.trailervote.product.video';
/**
* Fetch something that can be played such as a video or audio file. This is in
*
* @param {{ net: Response }} net for locals access
* @param {URL|string} persona to fetch
* @param {FetchOptions|FetchMethod} options method to call URL with
*/
export declare function fetch(net: Readonly, media: Readonly, options?: Readonly): Promise>;
export declare const fetchMedia: typeof fetch;