/**
 * **blowfish** - blowfish is a command line interface for interacting with DMTF Redfish and SNIA Swordfish enabled devices based on gofish
 *
 * @domain `github.com/matoszz/blowfish`
 * @programs `blowfish`
 * @version `0.0.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install blowfish`
 * @name `blowfish`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.blowfish
 * // Or access via domain
 * const samePkg = pantry.githubcommatoszzblowfish
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "blowfish"
 * console.log(pkg.description) // "blowfish is a command line interface for intera..."
 * console.log(pkg.programs)    // ["blowfish"]
 * console.log(pkg.versions[0]) // "0.0.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/matoszz/blowfish.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const blowfishPackage: {
  /**
   * The display name of this package.
   */
  name: 'blowfish';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/matoszz/blowfish';
  /**
   * Brief description of what this package does.
   */
  description: 'blowfish is a command line interface for interacting with DMTF Redfish and SNIA Swordfish enabled devices based on gofish';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/matoszz/blowfish/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/matoszz/blowfish';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install blowfish';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['blowfish'];
  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 BlowfishPackage = typeof blowfishPackage