///
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 { AudioFragmentV1 } from '@trailervote/media-types/application/vnd.trailervote.audio_fragment';
/**
* Fetch an external audio fragment
*
* @param {{ res: Response }} net for locals access
* @param {URL|string} persona to fetch
* @param {FetchMethod|FetchOptions} options method or options to call URL with
*
* @returns {Promise} the fetch response
*/
export declare function fetch(net: Readonly, audioFragment: Readonly, options?: Readonly): Promise>;
export declare const fetchAudioFragment: typeof fetch;