/**
 * **openapi-generator** - OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
 *
 * @domain `openapi-generator.tech`
 * @programs `openapi-generator`
 * @version `7.13.0` (12 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install openapi-generator`
 * @aliases `openapi-generator`
 * @dependencies `openjdk.org^21`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.openapigenerator
 * // Or access via domain
 * const samePkg = pantry.openapigeneratortech
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "openapi-generator.tech"
 * console.log(pkg.description) // "OpenAPI Generator allows generation of API clie..."
 * console.log(pkg.programs)    // ["openapi-generator"]
 * console.log(pkg.versions[0]) // "7.13.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/openapi-generator-tech.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const openapigeneratorPackage: {
  /**
   * The display name of this package.
   */
  name: 'openapi-generator.tech';
  /**
   * The canonical domain name for this package.
   */
  domain: 'openapi-generator.tech';
  /**
   * Brief description of what this package does.
   */
  description: 'OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/openapi-generator.tech/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/OpenAPITools/openapi-generator';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install openapi-generator';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['openapi-generator'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['openjdk.org^21'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['7.13.0', '7.12.0', '7.11.0', '7.10.0', '7.9.0', '7.8.0', '7.7.0', '7.6.0', '7.5.0', '7.4.0', '7.3.0', '7.2.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['openapi-generator']
};
export type OpenapigeneratorPackage = typeof openapigeneratorPackage