///
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 { PlaceV1, PlaceV2, PlaceV3, PlaceV4 } from '@trailervote/media-types/application/vnd.trailervote.place';
/**
* Fetch an external place
*
* @param {{ net: Response }} net for locals access
* @param {URL|string} place to fetch
* @param {FetchOptions|FetchMethod} options or method to call URL with
*/
export declare function fetch(net: Readonly, place: Readonly, options?: Readonly): Promise>;
export declare const fetchPlace: typeof fetch;