export declare const NETWORK_ACTIVITY_COLORS: { readonly 'Total Active': "#64748b"; readonly 'HTTP/1.1': "#1976d2"; readonly 'HTTP/2': "#388e3c"; readonly 'HTTP/3': "#7b1fa2"; readonly WebSocket: "#f57c00"; readonly Other: "#757575"; readonly Inbound: "#22c55e"; readonly Outbound: "#8b5cf6"; readonly 'Requests/sec': "#3b82f6"; }; export declare const NETWORK_ACTIVITY_PROTOCOL_ORDER: readonly ["HTTP/1.1", "HTTP/2", "HTTP/3", "WebSocket", "Other"]; export declare const PROTOCOL_CONNECTION_LEGEND_STATS: Array<'latest'>; export declare const PROTOCOL_CONNECTION_CHART_LINES: Array<'avg' | 'max'>; export declare const NETWORK_ACTIVITY_FALLBACK_COLORS: readonly ["#007aff", "#32ade6", "#af52de", "#ff9500", "#34c759", "#ff2d55"]; export declare const getNetworkActivityColor: (nameArg: string, fallbackIndexArg?: number) => string; export declare const orderNetworkActivityProtocolNames: (namesArg: string[]) => string[]; export declare const createNetworkProtocolDonutData: (countsArg: Record, paletteProtocolNamesArg?: string[]) => Array<{ name: string; value: number; color: string; }>; export declare const colorNetworkProtocolSeries: (seriesArg: T[]) => Array;