/**
 * **tfupdate** - Update version constraints in your Terraform configurations
 *
 * @domain `github.com/minamijoyo/tfupdate`
 * @programs `tfupdate`
 * @version `0.9.1` (8 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install tfupdate`
 * @name `tfupdate`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.tfupdate
 * // Or access via domain
 * const samePkg = pantry.githubcomminamijoyotfupdate
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "tfupdate"
 * console.log(pkg.description) // "Update version constraints in your Terraform co..."
 * console.log(pkg.programs)    // ["tfupdate"]
 * console.log(pkg.versions[0]) // "0.9.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/minamijoyo/tfupdate.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const tfupdatePackage: {
  /**
   * The display name of this package.
   */
  name: 'tfupdate';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/minamijoyo/tfupdate';
  /**
   * Brief description of what this package does.
   */
  description: 'Update version constraints in your Terraform configurations';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/minamijoyo/tfupdate/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install tfupdate';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['tfupdate'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.9.1', '0.9.0', '0.8.5', '0.8.4', '0.8.2', '0.8.1', '0.8.0', '0.7.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type TfupdatePackage = typeof tfupdatePackage