/**
 * **hunspell** - Spell checker and morphological analyzer
 *
 * @domain `hunspell.github.io`
 * @programs `analyze`, `chmorph`, `hunspell`, `hunzip`, `hzip`, ... (+2 more)
 * @version `1.7.2` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +hunspell.github.io -- $SHELL -i`
 * @aliases `hunspell`
 * @dependencies `gnu.org/readline`, `invisible-island.net/ncurses`, `gnu.org/gettext`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.hunspell
 * // Or access via domain
 * const samePkg = pantry.hunspellgithubio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "hunspell.github.io"
 * console.log(pkg.description) // "Spell checker and morphological analyzer"
 * console.log(pkg.programs)    // ["analyze", "chmorph", ...]
 * console.log(pkg.versions[0]) // "1.7.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/hunspell-github-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const hunspellPackage: {
  /**
   * The display name of this package.
   */
  name: 'hunspell.github.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'hunspell.github.io';
  /**
   * Brief description of what this package does.
   */
  description: 'Spell checker and morphological analyzer';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hunspell.github.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +hunspell.github.io -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['analyze', 'chmorph', 'hunspell', 'hunzip', 'hzip', 'munch', 'unmunch'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['gnu.org/readline', 'invisible-island.net/ncurses', 'gnu.org/gettext'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.7.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['hunspell']
};
export type HunspellPackage = typeof hunspellPackage