/**
 * **xxh** - Extremely fast non-cryptographic hash algorithm
 *
 * @domain `github.com/Cyan4973/xxHash`
 * @programs `xxhsum`, `xxh32sum`, `xxh64sum`, `xxh128sum`
 * @version `0.8.3` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +github.com/Cyan4973/xxHash -- $SHELL -i`
 * @aliases `xxh`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.xxh
 * // Or access via domain
 * const samePkg = pantry.githubcomcyan4973xxhash
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "xxHash"
 * console.log(pkg.description) // "Extremely fast non-cryptographic hash algorithm"
 * console.log(pkg.programs)    // ["xxhsum", "xxh32sum", ...]
 * console.log(pkg.versions[0]) // "0.8.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/Cyan4973/xxHash.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xxhPackage: {
  /**
   * The display name of this package.
   */
  name: 'xxHash';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/Cyan4973/xxHash';
  /**
   * Brief description of what this package does.
   */
  description: 'Extremely fast non-cryptographic hash algorithm';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/Cyan4973/xxHash/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/Cyan4973/xxHash -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['xxhsum', 'xxh32sum', 'xxh64sum', 'xxh128sum'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.8.3', '0.8.2', '0.8.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['xxh']
};
export type XxhPackage = typeof xxhPackage