/**
 * **autoconf** - Automatic configure script builder
 *
 * @domain `gnu.org/autoconf`
 * @programs `autoconf`, `autoheader`, `autom4te`, `autoreconf`, `autoscan`, ... (+2 more)
 * @version `2.72.0` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gnu.org/autoconf -- $SHELL -i`
 * @dependencies `gnu.org/m4@1`, `perl.org`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.gnuorgautoconf
 * console.log(pkg.name)        // "autoconf"
 * console.log(pkg.description) // "Automatic configure script builder"
 * console.log(pkg.programs)    // ["autoconf", "autoheader", ...]
 * console.log(pkg.versions[0]) // "2.72.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnu-org/autoconf.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gnuorgautoconfPackage: {
  /**
   * The display name of this package.
   */
  name: 'autoconf';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnu.org/autoconf';
  /**
   * Brief description of what this package does.
   */
  description: 'Automatic configure script builder';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/autoconf/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/autoconf -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['autoconf', 'autoheader', 'autom4te', 'autoreconf', 'autoscan', 'autoupdate', 'ifnames'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['gnu.org/m4@1', 'perl.org'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.72.0', '2.71.0'];
  aliases: readonly []
};
export type GnuorgautoconfPackage = typeof gnuorgautoconfPackage