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