/**
 * **XMLStarlet** - XML command-line utilities
 *
 * @domain `sourceforge.net/xmlstar`
 * @programs `xml`, `xmlstarlet`
 * @version `1.6.1` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +sourceforge.net/xmlstar -- $SHELL -i`
 * @aliases `XMLStarlet`
 * @dependencies `gnome.org/libxslt^1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.XMLStarlet
 * // Or access via domain
 * const samePkg = pantry.sourceforgenetxmlstar
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "xmlstar"
 * console.log(pkg.description) // "XML command-line utilities"
 * console.log(pkg.programs)    // ["xml", "xmlstarlet"]
 * console.log(pkg.versions[0]) // "1.6.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/sourceforge-net/xmlstar.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xMLStarletPackage: {
  /**
   * The display name of this package.
   */
  name: 'xmlstar';
  /**
   * The canonical domain name for this package.
   */
  domain: 'sourceforge.net/xmlstar';
  /**
   * Brief description of what this package does.
   */
  description: 'XML command-line utilities';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceforge.net/xmlstar/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +sourceforge.net/xmlstar -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['xml', 'xmlstarlet'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['gnome.org/libxslt^1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.6.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['XMLStarlet']
};
export type XMLStarletPackage = typeof xMLStarletPackage