import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import * as constructs from 'constructs';
export interface EnforceImdsv2Props {
    /**
       * ec2 Instance or Instances
       */
    readonly instances: ec2.Instance[] | ec2.Instance;
}
/**
 * Enforces the use of IMDSv2, without causing replacement of the Instance.
 */
export declare class EnforceImdsv2 extends constructs.Construct {
    constructor(scope: constructs.Construct, id: string, props: EnforceImdsv2Props);
}
