/**
 * **libyang** - YANG data modeling language library
 *
 * @domain `github.com/cesnet/libyang`
 * @programs `yanglint`, `yangre`
 * @version `3.12.2` (5 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +github.com/cesnet/libyang -- $SHELL -i`
 * @name `libyang`
 * @dependencies `pcre.org/v2>=10.21`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.libyang
 * // Or access via domain
 * const samePkg = pantry.githubcomcesnetlibyang
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "libyang"
 * console.log(pkg.description) // "YANG data modeling language library"
 * console.log(pkg.programs)    // ["yanglint", "yangre"]
 * console.log(pkg.versions[0]) // "3.12.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/cesnet/libyang.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const libyangPackage: {
  /**
   * The display name of this package.
   */
  name: 'libyang';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/cesnet/libyang';
  /**
   * Brief description of what this package does.
   */
  description: 'YANG data modeling language library';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/cesnet/libyang/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/cesnet/libyang -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['yanglint', 'yangre'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['pcre.org/v2>=10.21'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.12.2', '3.7.8', '3.4.2', '3.1.0', '2.1.148'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type LibyangPackage = typeof libyangPackage