/**
 * **oras** - OCI registry client - managing content like artifacts, images, packages
 *
 * @domain `oras.land`
 * @programs `oras`
 * @version `1.2.3` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install oras`
 * @aliases `oras`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.oras
 * // Or access via domain
 * const samePkg = pantry.orasland
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "oras.land"
 * console.log(pkg.description) // "OCI registry client - managing content like art..."
 * console.log(pkg.programs)    // ["oras"]
 * console.log(pkg.versions[0]) // "1.2.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/oras-land.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const orasPackage: {
  /**
   * The display name of this package.
   */
  name: 'oras.land';
  /**
   * The canonical domain name for this package.
   */
  domain: 'oras.land';
  /**
   * Brief description of what this package does.
   */
  description: 'OCI registry client - managing content like artifacts, images, packages';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/oras.land/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/oras-project/oras';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install oras';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['oras'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.2.3', '1.2.2', '1.2.1', '1.2.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['oras']
};
export type OrasPackage = typeof orasPackage