import { type SafeString } from '../_html.js';
import type { TelescopeEntry } from '../../../types.js';
/**
* Per-watcher detail views for "request-shaped" entries — those that
* render a payload-and-response surface around an HTTP status badge.
*
* Today: the `request` watcher (inbound) and the `http` watcher (outbound
* HTTP client). Both share the status-badge / payload-tabs idiom; keeping
* them in one file makes that family resemblance obvious.
*/
type ViewFn = (entry: TelescopeEntry) => SafeString;
export declare const RequestView: ViewFn;
export declare const HttpView: ViewFn;
export {};
//# sourceMappingURL=request-views.d.ts.map