/**
 * **aspell.net** - Spell checker with better logic than ispell
 *
 * @domain `aspell.net`
 * @programs `aspell`, `aspell-import`, `precat`, `preunzip`, `prezip`, ... (+4 more)
 * @version `0.60.8.1` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +aspell.net -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.aspellnet
 * console.log(pkg.name)        // "aspell.net"
 * console.log(pkg.description) // "Spell checker with better logic than ispell"
 * console.log(pkg.programs)    // ["aspell", "aspell-import", ...]
 * console.log(pkg.versions[0]) // "0.60.8.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/aspell-net.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const aspellnetPackage: {
  /**
   * The display name of this package.
   */
  name: 'aspell.net';
  /**
   * The canonical domain name for this package.
   */
  domain: 'aspell.net';
  /**
   * Brief description of what this package does.
   */
  description: 'Spell checker with better logic than ispell';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/aspell.net/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +aspell.net -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['aspell', 'aspell-import', 'precat', 'preunzip', 'prezip', 'prezip-bin', 'pspell-config', 'run-with-aspell', 'word-list-compress'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.60.8.1', '0.60.8'];
  aliases: readonly []
};
export type AspellnetPackage = typeof aspellnetPackage