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