/**
 * **pyproject-build** - A simple, correct Python build frontend
 *
 * @domain `github.com/pypa/build`
 * @programs `pyproject-build`
 * @version `1.2.2` (9 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install pyproject-build`
 * @aliases `pyproject-build`
 * @dependencies `pkgx.sh^1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.pyprojectbuild
 * // Or access via domain
 * const samePkg = pantry.githubcompypabuild
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "build"
 * console.log(pkg.description) // "A simple, correct Python build frontend"
 * console.log(pkg.programs)    // ["pyproject-build"]
 * console.log(pkg.versions[0]) // "1.2.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/pypa/build.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const pyprojectbuildPackage: {
  /**
   * The display name of this package.
   */
  name: 'build';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/pypa/build';
  /**
   * Brief description of what this package does.
   */
  description: 'A simple, correct Python build frontend';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/pypa/build/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install pyproject-build';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['pyproject-build'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['pkgx.sh^1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.2.2', '1.2.1', '1.2.0', '1.1.1', '1.1.0', '1.0.3', '1.0.1', '1.0.0', '0.10.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['pyproject-build']
};
export type PyprojectbuildPackage = typeof pyprojectbuildPackage