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