/**
 * **gr2fonttest** - Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world.
 *
 * @domain `graphite.sil.org`
 * @programs `gr2fonttest`
 * @version `1.3.14` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install gr2fonttest`
 * @aliases `gr2fonttest`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.gr2fonttest
 * // Or access via domain
 * const samePkg = pantry.graphitesilorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "graphite.sil.org"
 * console.log(pkg.description) // "Graphite is a "smart font" system developed spe..."
 * console.log(pkg.programs)    // ["gr2fonttest"]
 * console.log(pkg.versions[0]) // "1.3.14" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/graphite-sil-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gr2fonttestPackage: {
  /**
   * The display name of this package.
   */
  name: 'graphite.sil.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'graphite.sil.org';
  /**
   * Brief description of what this package does.
   */
  description: 'Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/graphite.sil.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 gr2fonttest';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['gr2fonttest'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.3.14'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['gr2fonttest']
};
export type Gr2fonttestPackage = typeof gr2fonttestPackage