import { Entry } from "har-format"; import { RequestType, WaterfallEntryIndicator, WaterfallEntryTab } from "../typing/waterfall"; /** * Generates the tabs for the details-overlay of a `Entry` * @param {Entry} entry - the entry to parse * @param {number} requestID * @param {RequestType} requestType * @param {number} startRelative - start time in ms, relative to the page's start time * @param {number} endRelative - end time in ms, relative to the page's start time * @param {number} detailsHeight - height of the details-overlay * @param {WaterfallEntryIndicator[]} indicators * @returns WaterfallEntryTab */ export declare function makeTabs(entry: Entry, requestID: number, requestType: RequestType, startRelative: number, endRelative: number, indicators: WaterfallEntryIndicator[]): WaterfallEntryTab[];