import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import * as constructs from 'constructs';
export interface ESubnetGroup {
    readonly name: string;
    readonly subnetType: ec2.SubnetType;
    readonly cidrMask: number;
}
export interface ESubnetGroupProps {
    readonly name: string;
    readonly subnetType: ec2.SubnetType;
    readonly cidrMask: number;
}
export declare class SubnetGroup extends constructs.Construct {
    subnet: ESubnetGroup;
    constructor(scope: constructs.Construct, id: string, props: ESubnetGroupProps);
}
