/**
 * **LibTomMath** - LibTomMath is a free open source portable number theoretic multiple-precision integer library written entirely in C.
 *
 * @domain `libtom.net/math`
 * @version `1.3.0` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +libtom.net/math -- $SHELL -i`
 * @aliases `LibTomMath`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.LibTomMath
 * // Or access via domain
 * const samePkg = pantry.libtomnetmath
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "math"
 * console.log(pkg.description) // "LibTomMath is a free open source portable numbe..."
 * console.log(pkg.versions[0]) // "1.3.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/libtom-net/math.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const libTomMathPackage: {
  /**
   * The display name of this package.
   */
  name: 'math';
  /**
   * The canonical domain name for this package.
   */
  domain: 'libtom.net/math';
  /**
   * Brief description of what this package does.
   */
  description: 'LibTomMath is a free open source portable number theoretic multiple-precision integer library written entirely in C.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libtom.net/math/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +libtom.net/math -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.3.0', '1.2.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['LibTomMath']
};
export type LibTomMathPackage = typeof libTomMathPackage