/**
 * **yarn** - The 1.x line is frozen - features and bugfixes now happen on https://github.com/yarnpkg/berry
 *
 * @domain `classic.yarnpkg.com`
 * @programs `yarn`, `yarnpkg`
 * @version `1.22.22` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +classic.yarnpkg.com -- $SHELL -i`
 * @aliases `yarn`
 * @dependencies `nodejs.org>=5`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.yarn
 * // Or access via domain
 * const samePkg = pantry.classicyarnpkgcom
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "classic.yarnpkg.com"
 * console.log(pkg.description) // "The 1.x line is frozen - features and bugfixes ..."
 * console.log(pkg.programs)    // ["yarn", "yarnpkg"]
 * console.log(pkg.versions[0]) // "1.22.22" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/classic-yarnpkg-com.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const classicYarnPackage: {
  /**
   * The display name of this package.
   */
  name: 'classic.yarnpkg.com';
  /**
   * The canonical domain name for this package.
   */
  domain: 'classic.yarnpkg.com';
  /**
   * Brief description of what this package does.
   */
  description: 'The 1.x line is frozen - features and bugfixes now happen on https://github.com/yarnpkg/berry';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/classic.yarnpkg.com/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +classic.yarnpkg.com -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['yarn', 'yarnpkg'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['nodejs.org>=5'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.22.22', '1.22.21', '1.22.20', '1.22.19'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['yarn']
};
export type ClassicYarnPackage = typeof classicYarnPackage