/**
 * **telnet** - pkgx package
 *
 * @domain `apple.com/remote_cmds`
 * @programs `telnet`
 * @version `306.0.0` (5 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install telnet`
 * @aliases `telnet`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.telnet
 * // Or access via domain
 * const samePkg = pantry.applecomremote_cmds
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "remote_cmds"
 * console.log(pkg.programs)    // ["telnet"]
 * console.log(pkg.versions[0]) // "306.0.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/apple-com/remote_cmds.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const telnetPackage: {
  /**
   * The display name of this package.
   */
  name: 'remote_cmds';
  /**
   * The canonical domain name for this package.
   */
  domain: 'apple.com/remote_cmds';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apple.com/remote_cmds/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install telnet';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['telnet'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['306.0.0', '303.141.1', '303.0.2', '302.0.0', '294.0.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['telnet']
};
export type TelnetPackage = typeof telnetPackage