/**
 * **gmp** - pkgx package
 *
 * @domain `gnu.org/gmp`
 * @version `6.3.0` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gnu.org/gmp -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.gnuorggmp
 * console.log(pkg.name)        // "gmp"
 * console.log(pkg.versions[0]) // "6.3.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnu-org/gmp.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gnuorggmpPackage: {
  /**
   * The display name of this package.
   */
  name: 'gmp';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnu.org/gmp';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/gmp/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/gmp -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['6.3.0', '6.2.1'];
  aliases: readonly []
};
export type GnuorggmpPackage = typeof gnuorggmpPackage