/**
 * **libdrm** - pkgx package
 *
 * @domain `dri.freedesktop.org`
 * @version `2.4.125` (11 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +dri.freedesktop.org -- $SHELL -i`
 * @aliases `libdrm`
 * @dependencies `x.org/pciaccess`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.libdrm
 * // Or access via domain
 * const samePkg = pantry.drifreedesktoporg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "dri.freedesktop.org"
 * console.log(pkg.versions[0]) // "2.4.125" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/dri-freedesktop-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const libdrmPackage: {
  /**
   * The display name of this package.
   */
  name: 'dri.freedesktop.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'dri.freedesktop.org';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dri.freedesktop.org/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +dri.freedesktop.org -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['x.org/pciaccess'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.4.125', '2.4.124', '2.4.123', '2.4.122', '2.4.121', '2.4.120', '2.4.119', '2.4.118', '2.4.117', '2.4.116', '2.4.100'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['libdrm']
};
export type LibdrmPackage = typeof libdrmPackage