/**
 * **pod** - Dependency manager for Cocoa projects
 *
 * @domain `cocoapods.org`
 * @programs `pod`
 * @version `1.16.2` (13 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install pod`
 * @aliases `pod`
 * @dependencies `ruby-lang.org~3.2`, `sourceware.org/libffi^3`, `rubygems.org^3`, ... (+1 more)
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.pod
 * // Or access via domain
 * const samePkg = pantry.cocoapodsorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "cocoapods.org"
 * console.log(pkg.description) // "Dependency manager for Cocoa projects"
 * console.log(pkg.programs)    // ["pod"]
 * console.log(pkg.versions[0]) // "1.16.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/cocoapods-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const podPackage: {
  /**
   * The display name of this package.
   */
  name: 'cocoapods.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'cocoapods.org';
  /**
   * Brief description of what this package does.
   */
  description: 'Dependency manager for Cocoa projects';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cocoapods.org/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install pod';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['pod'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['ruby-lang.org~3.2', 'sourceware.org/libffi^3', 'rubygems.org^3', 'git-scm.org^2'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.16.2', '1.16.1', '1.16.0', '1.15.2', '1.15.1', '1.15.0', '1.14.3', '1.14.2', '1.14.1', '1.14.0', '1.13.0', '1.12.1', '1.5.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['pod']
};
export type PodPackage = typeof podPackage