///
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 { PushManifestV2 } from '@trailervote/media-types/application/vnd.trailervote.push_manifest';
/**
* Fetch push manifest
*
* @param {{ net: Response }} net for locals access
* @param {URL|string} pushManifest to fetch
* @param {FetchMethod|FetchOptions} options method to call URL with
*/
export declare function fetch(net: Readonly, pushManifest: Readonly, options?: Readonly): Promise>;
export declare const fetchPushManifest: typeof fetch;