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