import * as cdk from '@aws-cdk/core';
export interface HovEc2Props {
    readonly bizUnit: string;
    readonly envType: string;
    readonly amiName: string;
    readonly osType: string;
    readonly instanceType: string;
    readonly instanceName: string;
    readonly iops: number;
    readonly volumeSize: number;
    readonly keyName: string;
    readonly stackName: string;
    readonly workloadType: string;
    readonly deploymentZone: string;
    readonly deploymentGuid: string;
    readonly region: string;
    readonly includeAppIdInOU?: string;
    readonly appId: string;
}
export declare class HovEc2 extends cdk.Construct {
    constructor(scope: cdk.Construct, id: string, props: HovEc2Props);
}
