/**
 * **cstool** - Capstone disassembly/disassembler framework for ARM, ARM64 (ARMv8), Alpha, BPF, Ethereum VM, HPPA, LoongArch, M68K, M680X, Mips, MOS65XX, PPC, RISC-V(rv32G/rv64G), SH, Sparc, SystemZ, TMS320C64X, TriCore, Webassembly, XCore and X86.
 *
 * @domain `capstone-engine.org`
 * @programs `cstool`
 * @version `5.0.6` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install cstool`
 * @aliases `cstool`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.cstool
 * // Or access via domain
 * const samePkg = pantry.capstoneengineorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "capstone-engine.org"
 * console.log(pkg.description) // "Capstone disassembly/disassembler framework for..."
 * console.log(pkg.programs)    // ["cstool"]
 * console.log(pkg.versions[0]) // "5.0.6" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/capstone-engine-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const cstoolPackage: {
  /**
   * The display name of this package.
   */
  name: 'capstone-engine.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'capstone-engine.org';
  /**
   * Brief description of what this package does.
   */
  description: 'Capstone disassembly/disassembler framework for ARM, ARM64 (ARMv8), Alpha, BPF, Ethereum VM, HPPA, LoongArch, M68K, M680X, Mips, MOS65XX, PPC, RISC-V(rv32G/rv64G), SH, Sparc, SystemZ, TMS320C64X, TriCore, Webassembly, XCore and X86.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/capstone-engine.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 cstool';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['cstool'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['5.0.6', '5.0.5', '5.0.3', '5.0.2', '5.0.1', '5.0.0', '4.0.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['cstool']
};
export type CstoolPackage = typeof cstoolPackage