import { LogAnalyticsWorkspace } from './logAnalyticsWorkspace'; import { BicepTemplate } from '../../deploy/template'; import { BicepConstruct } from '../graph/bicepConstruct'; export interface ApplicationInsightsProps { readonly name: string; readonly logAnalyticsWorkspace: LogAnalyticsWorkspace; } export declare class ApplicationInsights extends BicepConstruct { private props; readonly connectionString: string; constructor(template: BicepTemplate, resourceName: string, props: ApplicationInsightsProps); synthesize(): void; }