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