/**
 * **mongosh** - MongoDB Shell to connect, configure, query, and work with your MongoDB database
 *
 * @domain `mongodb.com/shell`
 * @programs `mongosh`
 * @version `2.5.3` (35 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install mongosh`
 * @aliases `mongosh`
 * @dependencies `nodejs.org`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.mongosh
 * // Or access via domain
 * const samePkg = pantry.mongodbcomshell
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "shell"
 * console.log(pkg.description) // "MongoDB Shell to connect, configure, query, and..."
 * console.log(pkg.programs)    // ["mongosh"]
 * console.log(pkg.versions[0]) // "2.5.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/mongodb-com/shell.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const mongoshPackage: {
  /**
   * The display name of this package.
   */
  name: 'shell';
  /**
   * The canonical domain name for this package.
   */
  domain: 'mongodb.com/shell';
  /**
   * Brief description of what this package does.
   */
  description: 'MongoDB Shell to connect, configure, query, and work with your MongoDB database';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/mongodb.com/shell/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install mongosh';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['mongosh'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['nodejs.org'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.5.3', '2.5.2', '2.5.1', '2.5.0', '2.4.2', '2.4.0', '2.3.9', '2.3.8', '2.3.7', '2.3.6', '2.3.5', '2.3.4', '2.3.3', '2.3.2', '2.3.1', '2.3.0', '2.2.15', '2.2.12', '2.2.11', '2.2.10', '2.2.9', '2.2.6', '2.2.5', '2.2.4', '2.2.3', '2.2.2', '2.2.1', '2.2.0', '2.1.5', '2.1.4', '2.1.3', '2.1.1', '2.1.0', '2.0.2', '2.0.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['mongosh']
};
export type MongoshPackage = typeof mongoshPackage