/**
 * **deno** - A modern runtime for JavaScript and TypeScript.
 *
 * @domain `deno.land`
 * @programs `deno`
 * @version `2.3.6` (132 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install deno`
 * @aliases `deno`
 * @companions `info-zip.org/unzip`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.deno
 * // Or access via domain
 * const samePkg = pantry.denoland
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "deno.land"
 * console.log(pkg.description) // "A modern runtime for JavaScript and TypeScript."
 * console.log(pkg.programs)    // ["deno"]
 * console.log(pkg.versions[0]) // "2.3.6" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/deno-land.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const denoPackage: {
  /**
   * The display name of this package.
   */
  name: 'deno.land';
  /**
   * The canonical domain name for this package.
   */
  domain: 'deno.land';
  /**
   * Brief description of what this package does.
   */
  description: 'A modern runtime for JavaScript and TypeScript.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/deno.land/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install deno';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['deno'];
  /**
   * Related packages that work well with this package.
   * Consider installing these for enhanced functionality.
   */
  companions: readonly ['info-zip.org/unzip'];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.3.6', '2.3.5', '2.3.4', '2.3.3', '2.3.2', '2.3.1', '2.2.13', '2.2.12', '2.2.11', '2.2.10', '2.2.9', '2.2.8', '2.2.7', '2.2.6', '2.2.5', '2.2.4', '2.2.3', '2.2.2', '2.2.1', '2.2.0', '2.1.13', '2.1.12', '2.1.11', '2.1.10', '2.1.9', '2.1.8', '2.1.7', '2.1.6', '2.1.5', '2.1.4', '2.1.3', '2.1.2', '2.1.1', '2.1.0', '2.0.6', '2.0.5', '2.0.4', '2.0.3', '2.0.2', '2.0.1', '2.0.0', '1.46.3', '1.46.2', '1.46.1', '1.46.0', '1.45.5', '1.45.4', '1.45.3', '1.45.2', '1.45.1', '1.45.0', '1.44.4', '1.44.3', '1.44.2', '1.44.1', '1.44.0', '1.43.6', '1.43.5', '1.43.4', '1.43.3', '1.43.2', '1.43.1', '1.43.0', '1.42.4', '1.42.3', '1.42.2', '1.42.1', '1.42.0', '1.41.3', '1.41.2', '1.41.1', '1.41.0', '1.40.5', '1.40.4', '1.40.3', '1.40.2', '1.40.1', '1.40.0', '1.39.4', '1.39.3', '1.39.2', '1.39.1', '1.39.0', '1.38.5', '1.38.4', '1.38.3', '1.38.2', '1.38.1', '1.38.0', '1.37.2', '1.37.1', '1.37.0', '1.36.4', '1.36.3', '1.36.2', '1.36.1', '1.36.0', '1.35.3', '1.35.2', '1.35.1', '1.35.0', '1.34.3', '1.34.2', '1.34.1', '1.34.0', '1.33.4', '1.33.3', '1.33.2', '1.33.1', '1.33.0', '1.32.5', '1.32.4', '1.32.3', '1.32.2', '1.32.1', '1.32.0', '1.31.3', '1.31.2', '1.31.1', '1.31.0', '1.30.3', '1.30.2', '1.30.1', '1.30.0', '1.29.2', '1.29.1', '1.29.0', '1.28.3', '1.28.2', '1.28.1', '1.28.0', '1.26.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['deno']
};
export type DenoPackage = typeof denoPackage