/**
 * **htslib.org** - C library for high-throughput sequencing data formats
 *
 * @domain `htslib.org`
 * @programs `bgzip`, `htsfile`, `tabix`
 * @version `1.22.0` (6 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +htslib.org -- $SHELL -i`
 * @dependencies `sourceware.org/bzip2`, `tukaani.org/xz`, `zlib.net^1`, ... (+1 more)
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.htsliborg
 * console.log(pkg.name)        // "htslib.org"
 * console.log(pkg.description) // "C library for high-throughput sequencing data f..."
 * console.log(pkg.programs)    // ["bgzip", "htsfile", ...]
 * console.log(pkg.versions[0]) // "1.22.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/htslib-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const htsliborgPackage: {
  /**
   * The display name of this package.
   */
  name: 'htslib.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'htslib.org';
  /**
   * Brief description of what this package does.
   */
  description: 'C library for high-throughput sequencing data formats';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/htslib.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 +htslib.org -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['bgzip', 'htsfile', 'tabix'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['sourceware.org/bzip2', 'tukaani.org/xz', 'zlib.net^1', 'curl.se>=5'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.22.0', '1.21.0', '1.20.0', '1.19.1', '1.19.0', '1.18.0'];
  aliases: readonly []
};
export type HtsliborgPackage = typeof htsliborgPackage