/**
 * **kaspa** - Kaspa full-node reference implementation and related libraries in the Rust programming language
 *
 * @domain `github.com/kaspanet/rusty-kaspa`
 * @programs `kaspad`, `kaspa-cli`
 * @version `1.0.0` (15 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +github.com/kaspanet/rusty-kaspa -- $SHELL -i`
 * @aliases `kaspa`
 * @dependencies `linux:openssl.org^1.1` (includes OS-specific dependencies with `os:package` format)
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.kaspa
 * // Or access via domain
 * const samePkg = pantry.githubcomkaspanetrustykaspa
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "rusty-kaspa"
 * console.log(pkg.description) // "Kaspa full-node reference implementation and re..."
 * console.log(pkg.programs)    // ["kaspad", "kaspa-cli"]
 * console.log(pkg.versions[0]) // "1.0.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/kaspanet/rusty-kaspa.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const kaspaPackage: {
  /**
   * The display name of this package.
   */
  name: 'rusty-kaspa';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/kaspanet/rusty-kaspa';
  /**
   * Brief description of what this package does.
   */
  description: 'Kaspa full-node reference implementation and related libraries in the Rust programming language';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/kaspanet/rusty-kaspa/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +github.com/kaspanet/rusty-kaspa -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['kaspad', 'kaspa-cli'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
   */
  dependencies: readonly ['linux:openssl.org^1.1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.0.0', '0.17.2', '0.17.1', '0.17.0', '0.16.1', '0.16.0', '0.15.2', '0.15.1', '0.14.1', '0.13.6', '0.13.4', '0.13.3', '0.13.2', '0.13.0', '0.1.7'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['kaspa']
};
export type KaspaPackage = typeof kaspaPackage