/**
 * **cdktf** - Define infrastructure resources using programming constructs and provision them using HashiCorp Terraform
 *
 * @domain `terraform.io/cdk`
 * @programs `cdktf`
 * @version `0.21.0` (20 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install cdktf`
 * @aliases `cdktf`, `terraform-cdk`
 * @dependencies `nodejs.org^17 || ^18 || ^19 || ^20`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.cdktf
 * // Or access via domain
 * const samePkg = pantry.terraformiocdk
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "cdk"
 * console.log(pkg.description) // "Define infrastructure resources using programmi..."
 * console.log(pkg.programs)    // ["cdktf"]
 * console.log(pkg.versions[0]) // "0.21.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/terraform-io/cdk.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const cdktfPackage: {
  /**
   * The display name of this package.
   */
  name: 'cdk';
  /**
   * The canonical domain name for this package.
   */
  domain: 'terraform.io/cdk';
  /**
   * Brief description of what this package does.
   */
  description: 'Define infrastructure resources using programming constructs and provision them using HashiCorp Terraform';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/terraform.io/cdk/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install cdktf';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['cdktf'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['nodejs.org^17 || ^18 || ^19 || ^20'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.21.0', '0.20.12', '0.20.11', '0.20.10', '0.20.9', '0.20.8', '0.20.7', '0.20.6', '0.20.5', '0.20.4', '0.20.3', '0.20.2', '0.20.1', '0.20.0', '0.19.2', '0.19.1', '0.19.0', '0.18.2', '0.18.1', '0.18.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['cdktf', 'terraform-cdk']
};
export type CdktfPackage = typeof cdktfPackage