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