declare class AppInsightsService { private static instance; private appInsights; private constructor(); static getInstance(): AppInsightsService; trackEvent(name: string, properties?: { [key: string]: any; }): void; trackException(properties: { [key: string]: any; }, error: Error): void; trackPageView(name?: string): void; } export default AppInsightsService;