/**
 * **re2c** - Lexer generator for C, C++, D, Go, Haskell, Java, JS, OCaml, Python, Rust, V and Zig.
 *
 * @domain `re2c.org`
 * @programs `re2c`
 * @version `4.2.0` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install re2c`
 * @aliases `re2c`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.re2c
 * // Or access via domain
 * const samePkg = pantry.re2corg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "re2c.org"
 * console.log(pkg.description) // "Lexer generator for C, C++, D, Go, Haskell, Jav..."
 * console.log(pkg.programs)    // ["re2c"]
 * console.log(pkg.versions[0]) // "4.2.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/re2c-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const re2cPackage: {
  /**
   * The display name of this package.
   */
  name: 're2c.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 're2c.org';
  /**
   * Brief description of what this package does.
   */
  description: 'Lexer generator for C, C++, D, Go, Haskell, Java, JS, OCaml, Python, Rust, V and Zig.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/re2c.org/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install re2c';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['re2c'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['4.2.0', '4.1.0', '4.0.2', '4.0.1', '4.0.0', '3.1.0', '3.0.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['re2c']
};
export type Re2cPackage = typeof re2cPackage