/**
 * **op** - pkgx package
 *
 * @domain `developer.1password.com/1password-cli`
 * @programs `op`
 * @version `2.31.1` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install op`
 * @aliases `op`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.op
 * // Or access via domain
 * const samePkg = pantry.developer1passwordcom1passwordcli
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "1password-cli"
 * console.log(pkg.programs)    // ["op"]
 * console.log(pkg.versions[0]) // "2.31.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/developer-1password-com/1password-cli.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const opPackage: {
  /**
   * The display name of this package.
   */
  name: '1password-cli';
  /**
   * The canonical domain name for this package.
   */
  domain: 'developer.1password.com/1password-cli';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/developer.1password.com/1password-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 op';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['op'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.31.1', '2.31.0', '2.30.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['op']
};
export type OpPackage = typeof opPackage