/**
 * **blink** - tiniest x86-64-linux emulator
 *
 * @domain `github.com/jart/blink`
 * @programs `blink`, `blinkenlights`
 * @version `0.0.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +github.com/jart/blink -- $SHELL -i`
 * @name `blink`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.blink
 * // Or access via domain
 * const samePkg = pantry.githubcomjartblink
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "blink"
 * console.log(pkg.description) // "tiniest x86-64-linux emulator"
 * console.log(pkg.programs)    // ["blink", "blinkenlights"]
 * console.log(pkg.versions[0]) // "0.0.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/jart/blink.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const blinkPackage: {
  /**
   * The display name of this package.
   */
  name: 'blink';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/jart/blink';
  /**
   * Brief description of what this package does.
   */
  description: 'tiniest x86-64-linux emulator';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jart/blink/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +github.com/jart/blink -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['blink', 'blinkenlights'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.0.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type BlinkPackage = typeof blinkPackage