import { RequestCompleteEvent } from './requestCollection'; /** * Look for corresponding timing in resource timing buffer * * Observations: * - Timing (start, end) are nested inside the request (start, end) * - Browsers generate a timing entry for OPTIONS request * * Strategy: * - if a single timing match, return the timing * - if two following timings match (OPTIONS request), return the timing for the actual request * - otherwise we can't decide, return undefined */ export declare function matchRequestTiming(request: RequestCompleteEvent): PerformanceResourceTiming | undefined;