/**
 * **groff** - GNU troff text-formatting system
 *
 * @domain `gnu.org/groff`
 * @programs `addftinfo`, `afmtodit`, `chem`, `eqn`, `eqn2graph`, ... (+34 more)
 * @version `1.23.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gnu.org/groff -- $SHELL -i`
 * @dependencies `ghostscript.com`, `netpbm.sourceforge.net`, `github.com/rrthomas/psutils`, ... (+3 more) (includes OS-specific dependencies with `os:package` format)
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.gnuorggroff
 * console.log(pkg.name)        // "groff"
 * console.log(pkg.description) // "GNU troff text-formatting system"
 * console.log(pkg.programs)    // ["addftinfo", "afmtodit", ...]
 * console.log(pkg.versions[0]) // "1.23.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnu-org/groff.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gnuorggroffPackage: {
  /**
   * The display name of this package.
   */
  name: 'groff';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnu.org/groff';
  /**
   * Brief description of what this package does.
   */
  description: 'GNU troff text-formatting system';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/groff/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +gnu.org/groff -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['addftinfo', 'afmtodit', 'chem', 'eqn', 'eqn2graph', 'gdiffmk', 'glilypond', 'gperl', 'gpinyin', 'grap2graph', 'grn', 'grodvi', 'groff', 'grog', 'grolbp', 'grolj4', 'gropdf', 'grops', 'grotty', 'hpftodit', 'indxbib', 'lkbib', 'lookbib', 'mmroff', 'neqn', 'nroff', 'pdfmom', 'pdfroff', 'pfbtops', 'pic', 'pic2graph', 'post-grohtml', 'preconv', 'pre-grohtml', 'refer', 'soelim', 'tbl', 'tfmtodit', 'troff'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
   */
  dependencies: readonly ['ghostscript.com', 'netpbm.sourceforge.net', 'github.com/rrthomas/psutils', 'freedesktop.org/uchardet', 'perl.org', 'linux:gnome.org/glib'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.23.0'];
  aliases: readonly []
};
export type GnuorggroffPackage = typeof gnuorggroffPackage