/**
 * **device-mapper** - pkgx package
 *
 * @domain `sourceware.org/dm`
 * @version `2.3.32` (10 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +sourceware.org/dm -- $SHELL -i`
 * @aliases `device-mapper`
 * @dependencies `pagure.io/libaio^0.3`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.devicemapper
 * // Or access via domain
 * const samePkg = pantry.sourcewareorgdm
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "dm"
 * console.log(pkg.versions[0]) // "2.3.32" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/sourceware-org/dm.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const devicemapperPackage: {
  /**
   * The display name of this package.
   */
  name: 'dm';
  /**
   * The canonical domain name for this package.
   */
  domain: 'sourceware.org/dm';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sourceware.org/dm/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +sourceware.org/dm -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['pagure.io/libaio^0.3'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.3.32', '2.3.31', '2.3.30', '2.3.29', '2.3.28', '2.3.27', '2.3.26', '2.3.25', '2.3.24', '2.3.22'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['device-mapper']
};
export type DevicemapperPackage = typeof devicemapperPackage