/**
 * **unicode.org** - The home of the ICU project source code.
 *
 * @domain `unicode.org`
 * @programs `derb`, `genbrk`, `gencfu`, `gencnval`, `gendict`, ... (+7 more)
 * @version `77.1.0` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +unicode.org -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.unicodeorg
 * console.log(pkg.name)        // "unicode.org"
 * console.log(pkg.description) // "The home of the ICU project source code."
 * console.log(pkg.programs)    // ["derb", "genbrk", ...]
 * console.log(pkg.versions[0]) // "77.1.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/unicode-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const unicodeorgPackage: {
  /**
   * The display name of this package.
   */
  name: 'unicode.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'unicode.org';
  /**
   * Brief description of what this package does.
   */
  description: 'The home of the ICU project source code.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/unicode.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 +unicode.org -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['derb', 'genbrk', 'gencfu', 'gencnval', 'gendict', 'genrb', 'icu-config', 'icuexportdata', 'icuinfo', 'makeconv', 'pkgdata', 'uconv'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['77.1.0', '76.1.0', '75.1.0', '74.2.0', '74.1.0', '73.2.0', '71.1.0'];
  aliases: readonly []
};
export type UnicodeorgPackage = typeof unicodeorgPackage