import { Subject } from 'rxjs/Subject'; export interface PerfPacket { url: string; method: string; dur: number; success: boolean; } export declare const GlobalHttpPerf$: Subject; export declare const Perf: { time(data?: Partial): (append: Partial) => void; };