///
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 { FeedbackCreateV1, FeedbackV1 } from '@trailervote/media-types/application/vnd.trailervote.feedback';
/**
* Give feedback
*
* @param {{ res: ResponseLike }} net for locals access
* @param {URL|string} persona to post to
* @param {FetchOptions|FetchMethod} options method to call URL with
*/
export declare function fetch(net: Readonly, feedback: Readonly, body: FeedbackCreateV1, options?: Readonly): Promise>;
export declare const fetchFeedback: typeof fetch;