/**
 * **hubble** - Hubble - Network, Service & Security Observability for Kubernetes using eBPF
 *
 * @domain `cilium.io/hubble`
 * @programs `hubble`
 * @version `1.17.3` (15 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install hubble`
 * @name `hubble`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.hubble
 * // Or access via domain
 * const samePkg = pantry.ciliumiohubble
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "hubble"
 * console.log(pkg.description) // "Hubble - Network, Service & Security Observabil..."
 * console.log(pkg.programs)    // ["hubble"]
 * console.log(pkg.versions[0]) // "1.17.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/cilium-io/hubble.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const hubblePackage: {
  /**
   * The display name of this package.
   */
  name: 'hubble';
  /**
   * The canonical domain name for this package.
   */
  domain: 'cilium.io/hubble';
  /**
   * Brief description of what this package does.
   */
  description: 'Hubble - Network, Service & Security Observability for Kubernetes using eBPF';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cilium.io/hubble/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install hubble';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['hubble'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.17.3', '1.17.2', '1.17.1', '1.17.0', '1.16.6', '1.16.5', '1.16.4', '1.16.3', '1.16.2', '1.16.1', '1.16.0', '0.13.6', '0.13.5', '0.13.4', '0.13.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type HubblePackage = typeof hubblePackage