/**
 * **daemontools** - Collection of tools for managing UNIX services
 *
 * @domain `cr.yp.to/daemontools`
 * @programs `envdir`, `envuidgid`, `fghack`, `multilog`, `pgrphack`, ... (+12 more)
 * @version `0.76.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +cr.yp.to/daemontools -- $SHELL -i`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.cryptodaemontools
 * console.log(pkg.name)        // "daemontools"
 * console.log(pkg.description) // "Collection of tools for managing UNIX services"
 * console.log(pkg.programs)    // ["envdir", "envuidgid", ...]
 * console.log(pkg.versions[0]) // "0.76.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/cr-yp-to/daemontools.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const cryptodaemontoolsPackage: {
  /**
   * The display name of this package.
   */
  name: 'daemontools';
  /**
   * The canonical domain name for this package.
   */
  domain: 'cr.yp.to/daemontools';
  /**
   * Brief description of what this package does.
   */
  description: 'Collection of tools for managing UNIX services';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cr.yp.to/daemontools/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +cr.yp.to/daemontools -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['envdir', 'envuidgid', 'fghack', 'multilog', 'pgrphack', 'readproctitle', 'setlock', 'setuidgid', 'softlimit', 'supervise', 'svc', 'svok', 'svscan', 'svscanboot', 'svstat', 'tai64n', 'tai64nlocal'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.76.0'];
  aliases: readonly []
};
export type CryptodaemontoolsPackage = typeof cryptodaemontoolsPackage