/**
 * **spawn.link** - a featureful union filesystem
 *
 * @domain `spawn.link`
 * @programs `mergerfs`, `mergerfs-fusermount`, `mount.mergerfs`
 * @version `2.40.2` (9 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +spawn.link -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.spawnlink
 * console.log(pkg.name)        // "spawn.link"
 * console.log(pkg.description) // "a featureful union filesystem"
 * console.log(pkg.programs)    // ["mergerfs", "mergerfs-fusermount", ...]
 * console.log(pkg.versions[0]) // "2.40.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/spawn-link.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const spawnlinkPackage: {
  /**
   * The display name of this package.
   */
  name: 'spawn.link';
  /**
   * The canonical domain name for this package.
   */
  domain: 'spawn.link';
  /**
   * Brief description of what this package does.
   */
  description: 'a featureful union filesystem';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/spawn.link/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +spawn.link -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['mergerfs', 'mergerfs-fusermount', 'mount.mergerfs'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.40.2', '2.40.1', '2.40.0', '2.39.0', '2.38.0', '2.37.1', '2.37.0', '2.36.0', '2.35.1'];
  aliases: readonly []
};
export type SpawnlinkPackage = typeof spawnlinkPackage