/**
 * **jadx** - Dex to Java decompiler
 *
 * @domain `github.com/skylot/jadx`
 * @programs `jadx`, `jadx-gui`
 * @version `1.5.2` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +github.com/skylot/jadx -- $SHELL -i`
 * @name `jadx`
 * @dependencies `openjdk.org^21`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.jadx
 * // Or access via domain
 * const samePkg = pantry.githubcomskylotjadx
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "jadx"
 * console.log(pkg.description) // "Dex to Java decompiler"
 * console.log(pkg.programs)    // ["jadx", "jadx-gui"]
 * console.log(pkg.versions[0]) // "1.5.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/skylot/jadx.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const jadxPackage: {
  /**
   * The display name of this package.
   */
  name: 'jadx';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/skylot/jadx';
  /**
   * Brief description of what this package does.
   */
  description: 'Dex to Java decompiler';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/skylot/jadx/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/skylot/jadx';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +github.com/skylot/jadx -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['jadx', 'jadx-gui'];
  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 ['1.5.2', '1.5.1', '1.5.0', '1.4.7'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type JadxPackage = typeof jadxPackage