/**
 * **ijg.org** - pkgx package
 *
 * @domain `ijg.org`
 * @programs `cjpeg`, `djpeg`, `jpegtran`, `rdjpgcom`, `wrjpgcom`
 * @version `9f` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +ijg.org -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.ijgorg
 * console.log(pkg.name)        // "ijg.org"
 * console.log(pkg.programs)    // ["cjpeg", "djpeg", ...]
 * console.log(pkg.versions[0]) // "9f" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/ijg-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const ijgorgPackage: {
  /**
   * The display name of this package.
   */
  name: 'ijg.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'ijg.org';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ijg.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 +ijg.org -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['cjpeg', 'djpeg', 'jpegtran', 'rdjpgcom', 'wrjpgcom'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['9f', '9e', '9.5.0'];
  aliases: readonly []
};
export type IjgorgPackage = typeof ijgorgPackage