import { Construct } from "constructs";
import { TrustBoundary } from "..";
export interface SecurityGroupProps {
    readonly description?: string;
    readonly tags?: string[];
}
export declare class SecurityGroup extends TrustBoundary {
    constructor(scope: Construct, id: string, props?: SecurityGroupProps);
}
