/**
 * **nettle** - A mirror of the nettle repository
 *
 * @domain `gnu.org/nettle`
 * @programs `nettle-hash`, `nettle-lfib-stream`, `nettle-pbkdf2`, `pkcs1-conv`, `sexp-conv`
 * @version `3.8.1` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gnu.org/nettle -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.gnuorgnettle
 * console.log(pkg.name)        // "nettle"
 * console.log(pkg.description) // "A mirror of the nettle repository"
 * console.log(pkg.programs)    // ["nettle-hash", "nettle-lfib-stream", ...]
 * console.log(pkg.versions[0]) // "3.8.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnu-org/nettle.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gnuorgnettlePackage: {
  /**
   * The display name of this package.
   */
  name: 'nettle';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnu.org/nettle';
  /**
   * Brief description of what this package does.
   */
  description: 'A mirror of the nettle repository';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/nettle/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +gnu.org/nettle -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['nettle-hash', 'nettle-lfib-stream', 'nettle-pbkdf2', 'pkcs1-conv', 'sexp-conv'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.8.1'];
  aliases: readonly []
};
export type GnuorgnettlePackage = typeof gnuorgnettlePackage