/**
 * **xchtmlreport** - Xcode-like HTML report for Unit and UI Tests
 *
 * @domain `github.com/XCTestHTMLReport/XCTestHTMLReport`
 * @programs `xchtmlreport`
 * @version `2.5.1` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install xchtmlreport`
 * @aliases `xchtmlreport`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.xchtmlreport
 * // Or access via domain
 * const samePkg = pantry.githubcomxctesthtmlreportxctesthtmlreport
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "XCTestHTMLReport"
 * console.log(pkg.description) // "Xcode-like HTML report for Unit and UI Tests"
 * console.log(pkg.programs)    // ["xchtmlreport"]
 * console.log(pkg.versions[0]) // "2.5.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/XCTestHTMLReport/XCTestHTMLReport.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xchtmlreportPackage: {
  /**
   * The display name of this package.
   */
  name: 'XCTestHTMLReport';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/XCTestHTMLReport/XCTestHTMLReport';
  /**
   * Brief description of what this package does.
   */
  description: 'Xcode-like HTML report for Unit and UI Tests';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/XCTestHTMLReport/XCTestHTMLReport/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/XCTestHTMLReport/XCTestHTMLReport';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install xchtmlreport';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['xchtmlreport'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.5.1', '2.5.0', '2.4.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['xchtmlreport']
};
export type XchtmlreportPackage = typeof xchtmlreportPackage