/**
 * **xb-tool** - A library to help create and query binary XML blobs
 *
 * @domain `github.com/hughsie/libxmlb`
 * @programs `xb-tool`
 * @version `0.3.22` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install xb-tool`
 * @aliases `xb-tool`
 * @dependencies `gnome.org/glib@2`, `tukaani.org/xz@5`, `facebook.com/zstd@1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.xbtool
 * // Or access via domain
 * const samePkg = pantry.githubcomhughsielibxmlb
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "libxmlb"
 * console.log(pkg.description) // "A library to help create and query binary XML b..."
 * console.log(pkg.programs)    // ["xb-tool"]
 * console.log(pkg.versions[0]) // "0.3.22" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/hughsie/libxmlb.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xbtoolPackage: {
  /**
   * The display name of this package.
   */
  name: 'libxmlb';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/hughsie/libxmlb';
  /**
   * Brief description of what this package does.
   */
  description: 'A library to help create and query binary XML blobs';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/hughsie/libxmlb/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install xb-tool';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['xb-tool'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['gnome.org/glib@2', 'tukaani.org/xz@5', 'facebook.com/zstd@1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.3.22', '0.3.21', '0.3.20', '0.3.19'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['xb-tool']
};
export type XbtoolPackage = typeof xbtoolPackage