import { ApmInterface } from './contracts/apm.interface'; export declare class Apm implements ApmInterface { start(apm?: string): Promise; addCustomAttributes(attributes: any): Promise; setTransactionName(name: string): Promise; startSpan(span: string, func: Function): Promise; getBrowserTimingHeader(): string; recordMetric(name: string, value: any): void; }