export interface ProxyServerTiming { enabled: boolean; startedAt: number; phases: Map; } export declare function shouldEnableProxyServerTiming(): boolean; export declare function createProxyServerTiming(enabled?: boolean): ProxyServerTiming; export declare function markProxyServerTimingPhase(timing: ProxyServerTiming, name: string, durationMs?: number): void; export declare function profileProxyServerTimingPhase(timing: ProxyServerTiming, name: string, fn: () => Promise): Promise; export declare function withProxyServerTimingHeader(response: Response, timing: ProxyServerTiming, totalMs?: number): Response; //# sourceMappingURL=server-timing.d.ts.map