export declare abstract class TerraformElement {
    /**
     * To Terraform representation.
     */
    abstract toTerraform(): string;
}
