/**
 * **terrarium** - terraform wrapper which transparent loads env files for stacks
 *
 * @domain `github.com/terrarium-tf`
 * @programs `terrarium`
 * @version `1.3.2` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install terrarium`
 * @aliases `terrarium`
 * @dependencies `terraform.io`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.terrarium
 * // Or access via domain
 * const samePkg = pantry.githubcomterrariumtf
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "terrarium-tf"
 * console.log(pkg.description) // "terraform wrapper which transparent loads env f..."
 * console.log(pkg.programs)    // ["terrarium"]
 * console.log(pkg.versions[0]) // "1.3.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/terrarium-tf.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const terrariumPackage: {
  /**
   * The display name of this package.
   */
  name: 'terrarium-tf';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/terrarium-tf';
  /**
   * Brief description of what this package does.
   */
  description: 'terraform wrapper which transparent loads env files for stacks';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/terrarium-tf/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install terrarium';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['terrarium'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['terraform.io'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.3.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['terrarium']
};
export type TerrariumPackage = typeof terrariumPackage