/**
 * **libgcrypt** - Cryptographic library based on the code from GnuPG
 *
 * @domain `gnupg.org/libgcrypt`
 * @programs `dumpsexp`, `hmac256`, `libgcrypt-config`, `mpicalc`
 * @version `1.11.1` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gnupg.org/libgcrypt -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.gnupgorglibgcrypt
 * console.log(pkg.name)        // "libgcrypt"
 * console.log(pkg.description) // "Cryptographic library based on the code from GnuPG"
 * console.log(pkg.programs)    // ["dumpsexp", "hmac256", ...]
 * console.log(pkg.versions[0]) // "1.11.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnupg-org/libgcrypt.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gnupgorglibgcryptPackage: {
  /**
   * The display name of this package.
   */
  name: 'libgcrypt';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnupg.org/libgcrypt';
  /**
   * Brief description of what this package does.
   */
  description: 'Cryptographic library based on the code from GnuPG';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnupg.org/libgcrypt/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +gnupg.org/libgcrypt -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['dumpsexp', 'hmac256', 'libgcrypt-config', 'mpicalc'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.11.1', '1.11.0', '1.10.3', '1.10.1'];
  aliases: readonly []
};
export type GnupgorglibgcryptPackage = typeof gnupgorglibgcryptPackage