/**
 * **protocol** - pkgx package
 *
 * @domain `x.org/protocol`
 * @version `2024.1.0` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +x.org/protocol -- $SHELL -i`
 * @dependencies `x.org/util-macros`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.xorgprotocol
 * console.log(pkg.name)        // "protocol"
 * console.log(pkg.versions[0]) // "2024.1.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/x-org/protocol.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xorgprotocolPackage: {
  /**
   * The display name of this package.
   */
  name: 'protocol';
  /**
   * The canonical domain name for this package.
   */
  domain: 'x.org/protocol';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/protocol/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/protocol -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['x.org/util-macros'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2024.1.0', '2023.2.0', '2023.1.0', '2022.2.0'];
  aliases: readonly []
};
export type XorgprotocolPackage = typeof xorgprotocolPackage