/// 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 { FeedbackCollectionV1 } from '@trailervote/media-types/application/vnd.trailervote.feedback'; /** * Fetch an external persona or create if it doesn't exist * * @param {{ res: ResponseLike }} 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, persona: Readonly, options?: Readonly): Promise>; export declare const fetchFeedback: typeof fetch;