/**
 * **stow** - Organize software neatly under a single directory tree (e.g. /usr/local)
 *
 * @domain `gnu.org/stow`
 * @programs `stow`
 * @version `2.4.1` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install stow`
 * @name `stow`
 * @dependencies `perl.org^5.6.1`
 * @companions `PERL5LIB^${{prefix}}/lib/perl5`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.stow
 * // Or access via domain
 * const samePkg = pantry.gnuorgstow
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "stow"
 * console.log(pkg.description) // "Organize software neatly under a single directo..."
 * console.log(pkg.programs)    // ["stow"]
 * console.log(pkg.versions[0]) // "2.4.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnu-org/stow.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const stowPackage: {
  /**
   * The display name of this package.
   */
  name: 'stow';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnu.org/stow';
  /**
   * Brief description of what this package does.
   */
  description: 'Organize software neatly under a single directory tree (e.g. /usr/local)';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/stow/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install stow';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['stow'];
  /**
   * Related packages that work well with this package.
   * Consider installing these for enhanced functionality.
   */
  companions: readonly ['PERL5LIB^${{prefix}}/lib/perl5'];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['perl.org^5.6.1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.4.1', '2.4.0', '2.3.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type StowPackage = typeof stowPackage