/**
 * **apko** - Build OCI images from APK packages directly without Dockerfile
 *
 * @domain `github.com/chainguard-dev/apko`
 * @programs `apko`
 * @version `0.27.9` (50 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install apko`
 * @name `apko`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.apko
 * // Or access via domain
 * const samePkg = pantry.githubcomchainguarddevapko
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "apko"
 * console.log(pkg.description) // "Build OCI images from APK packages directly wit..."
 * console.log(pkg.programs)    // ["apko"]
 * console.log(pkg.versions[0]) // "0.27.9" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/chainguard-dev/apko.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const apkoPackage: {
  /**
   * The display name of this package.
   */
  name: 'apko';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/chainguard-dev/apko';
  /**
   * Brief description of what this package does.
   */
  description: 'Build OCI images from APK packages directly without Dockerfile';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/chainguard-dev/apko/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/chainguard-dev/apko';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install apko';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['apko'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.27.9', '0.27.8', '0.27.7', '0.27.6', '0.27.5', '0.27.4', '0.27.3', '0.27.2', '0.27.1', '0.27.0', '0.26.1', '0.26.0', '0.25.7', '0.25.6', '0.25.5', '0.25.4', '0.25.3', '0.25.2', '0.25.1', '0.25.0', '0.24.0', '0.23.0', '0.22.7', '0.22.6', '0.22.5', '0.22.4', '0.22.3', '0.22.2', '0.22.1', '0.22.0', '0.21.0', '0.20.2', '0.20.1', '0.20.0', '0.19.9', '0.19.8', '0.19.7', '0.19.6', '0.19.5', '0.19.4', '0.19.3', '0.19.1', '0.18.1', '0.18.0', '0.16.0', '0.14.7', '0.14.6', '0.14.5', '0.14.1', '0.13.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type ApkoPackage = typeof apkoPackage