/**
 * **ack** - ack is a grep-like search tool optimized for source code.
 *
 * @domain `beyondgrep.com`
 * @programs `ack`
 * @version `3.9.0` (6 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install ack`
 * @aliases `ack`
 * @dependencies `perl.org`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.ack
 * // Or access via domain
 * const samePkg = pantry.beyondgrepcom
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "beyondgrep.com"
 * console.log(pkg.description) // "ack is a grep-like search tool optimized for so..."
 * console.log(pkg.programs)    // ["ack"]
 * console.log(pkg.versions[0]) // "3.9.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/beyondgrep-com.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const ackPackage: {
  /**
   * The display name of this package.
   */
  name: 'beyondgrep.com';
  /**
   * The canonical domain name for this package.
   */
  domain: 'beyondgrep.com';
  /**
   * Brief description of what this package does.
   */
  description: 'ack is a grep-like search tool optimized for source code.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/beyondgrep.com/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install ack';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['ack'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['perl.org'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.9.0', '3.8.2', '3.8.1', '3.8.0', '3.7.0', '3.6.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['ack']
};
export type AckPackage = typeof ackPackage