/**
 * **binutils** - GNU binary tools for native development
 *
 * @domain `gnu.org/binutils`
 * @programs `addr2line`, `ar`, `c++filt`, `elfedit`, `nm`, ... (+7 more)
 * @version `2.44.0` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gnu.org/binutils -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.gnuorgbinutils
 * console.log(pkg.name)        // "binutils"
 * console.log(pkg.description) // "GNU binary tools for native development"
 * console.log(pkg.programs)    // ["addr2line", "ar", ...]
 * console.log(pkg.versions[0]) // "2.44.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnu-org/binutils.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gnuorgbinutilsPackage: {
  /**
   * The display name of this package.
   */
  name: 'binutils';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnu.org/binutils';
  /**
   * Brief description of what this package does.
   */
  description: 'GNU binary tools for native development';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/binutils/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/binutils -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['addr2line', 'ar', 'c++filt', 'elfedit', 'nm', 'objcopy', 'objdump', 'ranlib', 'readelf', 'size', 'strings', 'strip'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.44.0', '2.43.1', '2.43.0', '2.42.0', '2.41.0', '2.40.0', '2.39.0'];
  aliases: readonly []
};
export type GnuorgbinutilsPackage = typeof gnuorgbinutilsPackage