/**
 * **apu-{{** - Mirror of Apache Portable Runtime util
 *
 * @domain `apache.org/apr-util`
 * @programs `apu-{{ version.major }}-config`
 * @version `1.6.3` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install apu-{{ version.major }}-config`
 * @aliases `apu-{{`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.apu
 * // Or access via domain
 * const samePkg = pantry.apacheorgaprutil
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "apr-util"
 * console.log(pkg.description) // "Mirror of Apache Portable Runtime util"
 * console.log(pkg.programs)    // ["apu-{{ version.major }}-config"]
 * console.log(pkg.versions[0]) // "1.6.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/apache-org/apr-util.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const apuPackage: {
  /**
   * The display name of this package.
   */
  name: 'apr-util';
  /**
   * The canonical domain name for this package.
   */
  domain: 'apache.org/apr-util';
  /**
   * Brief description of what this package does.
   */
  description: 'Mirror of Apache Portable Runtime util';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apache.org/apr-util/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install apu-{{ version.major }}-config';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['apu-{{ version.major }}-config'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.6.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['apu-{{']
};
export type ApuPackage = typeof apuPackage