/**
 * **xml** - Read-only mirror of https://gitlab.gnome.org/GNOME/libxml2
 *
 * @domain `gnome.org/libxml2`
 * @programs `xml2-config`, `xmlcatalog`, `xmllint`
 * @version `2.14.4` (35 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gnome.org/libxml2 -- $SHELL -i`
 * @aliases `xml`
 * @dependencies `zlib.net^1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.xml
 * // Or access via domain
 * const samePkg = pantry.gnomeorglibxml2
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "libxml2"
 * console.log(pkg.description) // "Read-only mirror of https://gitlab.gnome.org/GN..."
 * console.log(pkg.programs)    // ["xml2-config", "xmlcatalog", ...]
 * console.log(pkg.versions[0]) // "2.14.4" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnome-org/libxml2.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xmlPackage: {
  /**
   * The display name of this package.
   */
  name: 'libxml2';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnome.org/libxml2';
  /**
   * Brief description of what this package does.
   */
  description: 'Read-only mirror of https://gitlab.gnome.org/GNOME/libxml2';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/libxml2/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +gnome.org/libxml2 -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['xml2-config', 'xmlcatalog', 'xmllint'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['zlib.net^1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.14.4', '2.14.3', '2.14.2', '2.14.1', '2.14.0', '2.13.8', '2.13.7', '2.13.6', '2.13.5', '2.13.4', '2.13.3', '2.13.2', '2.13.1', '2.13.0', '2.12.9', '2.12.8', '2.12.7', '2.12.6', '2.12.5', '2.12.4', '2.12.3', '2.12.2', '2.12.1', '2.12.0', '2.11.9', '2.11.8', '2.11.7', '2.11.6', '2.11.4', '2.11.3', '2.11.2', '2.11.1', '2.11.0', '2.10.4', '2.10.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['xml']
};
export type XmlPackage = typeof xmlPackage