/**
 * **smi** - Library to Access SMI MIB Information
 *
 * @domain `ibr.cs.tu-bs.de/libsmi`
 * @programs `smidiff`, `smidump`, `smilint`, `smiquery`, `smixlate`
 * @version `0.4.8` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +ibr.cs.tu-bs.de/libsmi -- $SHELL -i`
 * @aliases `smi`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.smi
 * // Or access via domain
 * const samePkg = pantry.ibrcstubsdelibsmi
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "libsmi"
 * console.log(pkg.description) // "Library to Access SMI MIB Information"
 * console.log(pkg.programs)    // ["smidiff", "smidump", ...]
 * console.log(pkg.versions[0]) // "0.4.8" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/ibr-cs-tu-bs-de/libsmi.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const smiPackage: {
  /**
   * The display name of this package.
   */
  name: 'libsmi';
  /**
   * The canonical domain name for this package.
   */
  domain: 'ibr.cs.tu-bs.de/libsmi';
  /**
   * Brief description of what this package does.
   */
  description: 'Library to Access SMI MIB Information';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ibr.cs.tu-bs.de/libsmi/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +ibr.cs.tu-bs.de/libsmi -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['smidiff', 'smidump', 'smilint', 'smiquery', 'smixlate'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.4.8'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['smi']
};
export type SmiPackage = typeof smiPackage