/**
 * **pcre2** - Perl compatible regular expressions library with a new API
 *
 * @domain `pcre.org/v2`
 * @programs `pcre2-config`, `pcre2grep`, `pcre2test`
 * @version `10.44.0` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +pcre.org/v2 -- $SHELL -i`
 * @aliases `pcre2`
 * @dependencies `sourceware.org/bzip2@1`, `zlib.net@1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.pcre2
 * // Or access via domain
 * const samePkg = pantry.pcreorgv2
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "v2"
 * console.log(pkg.description) // "Perl compatible regular expressions library wit..."
 * console.log(pkg.programs)    // ["pcre2-config", "pcre2grep", ...]
 * console.log(pkg.versions[0]) // "10.44.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/pcre-org/v2.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const pcre2Package: {
  /**
   * The display name of this package.
   */
  name: 'v2';
  /**
   * The canonical domain name for this package.
   */
  domain: 'pcre.org/v2';
  /**
   * Brief description of what this package does.
   */
  description: 'Perl compatible regular expressions library with a new API';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pcre.org/v2/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +pcre.org/v2 -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['pcre2-config', 'pcre2grep', 'pcre2test'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['sourceware.org/bzip2@1', 'zlib.net@1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['10.44.0', '10.43.0', '10.42.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['pcre2']
};
export type Pcre2Package = typeof pcre2Package