/**
 * **libSM** - pkgx package
 *
 * @domain `x.org/libSM`
 * @version `1.2.6` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +x.org/libSM -- $SHELL -i`
 * @dependencies `x.org/ice`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.xorglibsm
 * console.log(pkg.name)        // "libSM"
 * console.log(pkg.versions[0]) // "1.2.6" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/x-org/libSM.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xorglibsmPackage: {
  /**
   * The display name of this package.
   */
  name: 'libSM';
  /**
   * The canonical domain name for this package.
   */
  domain: 'x.org/libSM';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/libSM/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +x.org/libSM -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['x.org/ice'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.2.6', '1.2.5', '1.2.4'];
  aliases: readonly []
};
export type XorglibsmPackage = typeof xorglibsmPackage