/**
 * **cosign** - Code signing and transparency for containers and binaries
 *
 * @domain `sigstore.dev/cosign`
 * @programs `cosign`
 * @version `2.5.2` (15 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install cosign`
 * @name `cosign`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.cosign
 * // Or access via domain
 * const samePkg = pantry.sigstoredevcosign
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "cosign"
 * console.log(pkg.description) // "Code signing and transparency for containers an..."
 * console.log(pkg.programs)    // ["cosign"]
 * console.log(pkg.versions[0]) // "2.5.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/sigstore-dev/cosign.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const cosignPackage: {
  /**
   * The display name of this package.
   */
  name: 'cosign';
  /**
   * The canonical domain name for this package.
   */
  domain: 'sigstore.dev/cosign';
  /**
   * Brief description of what this package does.
   */
  description: 'Code signing and transparency for containers and binaries';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sigstore.dev/cosign/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/sigstore/cosign';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install cosign';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['cosign'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.5.2', '2.5.1', '2.5.0', '2.4.3', '2.4.2', '2.4.1', '2.4.0', '2.3.0', '2.2.4', '2.2.3', '2.2.2', '2.2.1', '2.2.0', '1.13.6', '1.13.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type CosignPackage = typeof cosignPackage