import { ErrorHandler } from '@angular/core';
import { AppInsightsService } from './appinsights.service';
/**
 * App Insights Error Handler
 */
export declare class AppInsightsErrorHandler extends ErrorHandler {
    private appInsightsService;
    constructor(appInsightsService: AppInsightsService);
    handleError(error: any): void;
}
