/**
 * **dev** - isolated `dev` environments
 *
 * @domain `pkgx.sh/dev`
 * @programs `dev`
 * @version `1.8.1` (12 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install dev`
 * @name `dev`
 * @dependencies `pkgx.sh^1,^2.1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.dev
 * // Or access via domain
 * const samePkg = pantry.pkgxshdev
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "dev"
 * console.log(pkg.description) // "isolated `dev` environments"
 * console.log(pkg.programs)    // ["dev"]
 * console.log(pkg.versions[0]) // "1.8.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/pkgx-sh/dev.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const devPackage: {
  /**
   * The display name of this package.
   */
  name: 'dev';
  /**
   * The canonical domain name for this package.
   */
  domain: 'pkgx.sh/dev';
  /**
   * Brief description of what this package does.
   */
  description: 'isolated `dev` environments';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pkgx.sh/dev/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install dev';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['dev'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['pkgx.sh^1,^2.1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.8.1', '1.8.0', '1.7.0', '1.6.0', '1.5.0', '1.4.0', '1.3.0', '1.2.0', '1.1.0', '1.0.2', '1.0.1', '1.0.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type DevPackage = typeof devPackage