/**
 * **man-db** - pkgx package
 *
 * @domain `man-db.gitlab.io/man-db`
 * @programs `apropos`, `catman`, `lexgrog`, `man`, `mandb`, ... (+3 more)
 * @version `2.13.1` (5 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +man-db.gitlab.io/man-db -- $SHELL -i`
 * @name `man-db`
 * @dependencies `libpipeline.gitlab.io/libpipeline`, `gnu.org/groff`, `linux:gnu.org/gdbm` (includes OS-specific dependencies with `os:package` format)
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.mandb
 * // Or access via domain
 * const samePkg = pantry.mandbgitlabiomandb
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "man-db"
 * console.log(pkg.programs)    // ["apropos", "catman", ...]
 * console.log(pkg.versions[0]) // "2.13.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/man-db-gitlab-io/man-db.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const mandbPackage: {
  /**
   * The display name of this package.
   */
  name: 'man-db';
  /**
   * The canonical domain name for this package.
   */
  domain: 'man-db.gitlab.io/man-db';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/man-db.gitlab.io/man-db/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +man-db.gitlab.io/man-db -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['apropos', 'catman', 'lexgrog', 'man', 'mandb', 'manpath', 'man-recode', 'whatis'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
   */
  dependencies: readonly ['libpipeline.gitlab.io/libpipeline', 'gnu.org/groff', 'linux:gnu.org/gdbm'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.13.1', '2.13.0', '2.12.1', '2.12.0', '2.11.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type MandbPackage = typeof mandbPackage