/**
 * **eas** - Fastest way to build, submit, and update iOS and Android apps
 *
 * @domain `expo.dev/eas-cli`
 * @programs `eas`
 * @version `16.12.0` (136 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install eas`
 * @aliases `eas`
 * @dependencies `nodejs.org^18.18 || >=20`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.eas
 * // Or access via domain
 * const samePkg = pantry.expodeveascli
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "eas-cli"
 * console.log(pkg.description) // "Fastest way to build, submit, and update iOS an..."
 * console.log(pkg.programs)    // ["eas"]
 * console.log(pkg.versions[0]) // "16.12.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/expo-dev/eas-cli.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const easPackage: {
  /**
   * The display name of this package.
   */
  name: 'eas-cli';
  /**
   * The canonical domain name for this package.
   */
  domain: 'expo.dev/eas-cli';
  /**
   * Brief description of what this package does.
   */
  description: 'Fastest way to build, submit, and update iOS and Android apps';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/expo.dev/eas-cli/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install eas';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['eas'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['nodejs.org^18.18 || >=20'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['16.12.0', '16.11.0', '16.10.1', '16.10.0', '16.9.0', '16.8.0', '16.7.2', '16.7.1', '16.7.0', '16.6.2', '16.6.1', '16.6.0', '16.5.0', '16.4.2', '16.4.1', '16.4.0', '16.3.3', '16.3.2', '16.3.1', '16.3.0', '16.2.2', '16.2.1', '16.2.0', '16.1.0', '16.0.1', '16.0.0', '15.0.15', '15.0.14', '15.0.13', '15.0.12', '15.0.11', '15.0.10', '15.0.9', '15.0.8', '15.0.7', '15.0.6', '15.0.5', '15.0.4', '15.0.3', '15.0.2', '15.0.1', '15.0.0', '14.7.1', '14.7.0', '14.6.0', '14.5.0', '14.4.1', '14.4.0', '14.3.1', '14.3.0', '14.2.0', '14.1.0', '14.0.3', '14.0.2', '14.0.1', '14.0.0', '13.4.2', '13.4.1', '13.4.0', '13.3.0', '13.2.3', '13.2.2', '13.2.1', '13.2.0', '13.1.1', '13.1.0', '13.0.1', '13.0.0', '12.6.2', '12.6.1', '12.6.0', '12.5.4', '12.5.3', '12.5.2', '12.5.1', '12.5.0', '12.4.1', '12.4.0', '12.3.0', '12.2.0', '12.1.1', '12.1.0', '12.0.0', '11.0.3', '11.0.2', '11.0.1', '11.0.0', '10.2.4', '10.2.3', '10.2.2', '10.2.1', '10.2.0', '10.1.1', '10.1.0', '10.0.3', '10.0.2', '10.0.1', '10.0.0', '9.2.0', '9.1.0', '9.0.10', '9.0.9', '9.0.8', '9.0.7', '9.0.6', '9.0.5', '9.0.4', '9.0.3', '9.0.2', '9.0.1', '9.0.0', '8.0.0', '7.8.5', '7.8.4', '7.8.3', '7.8.2', '7.8.1', '7.8.0', '7.7.0', '7.6.2', '7.6.1', '7.6.0', '7.5.0', '7.4.0', '7.3.0', '7.2.0', '7.1.3', '7.1.2', '7.1.1', '7.1.0', '7.0.0', '6.1.0', '6.0.0', '5.9.3', '5.9.2', '5.9.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['eas']
};
export type EasPackage = typeof easPackage