/**
 * **bazel** - A user-friendly launcher for Bazel.
 *
 * @domain `github.com/bazelbuild/bazelisk`
 * @programs `bazel`, `bazelisk`
 * @version `1.26.0` (10 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +github.com/bazelbuild/bazelisk -- $SHELL -i`
 * @aliases `bazel`
 * @dependencies `curl.se/ca-certs`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.bazel
 * // Or access via domain
 * const samePkg = pantry.githubcombazelbuildbazelisk
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "bazelisk"
 * console.log(pkg.description) // "A user-friendly launcher for Bazel."
 * console.log(pkg.programs)    // ["bazel", "bazelisk"]
 * console.log(pkg.versions[0]) // "1.26.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/bazelbuild/bazelisk.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const bazelPackage: {
  /**
   * The display name of this package.
   */
  name: 'bazelisk';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/bazelbuild/bazelisk';
  /**
   * Brief description of what this package does.
   */
  description: 'A user-friendly launcher for Bazel.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/bazelbuild/bazelisk/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/bazelbuild/bazelisk -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['bazel', 'bazelisk'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['curl.se/ca-certs'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.26.0', '1.25.0', '1.24.1', '1.24.0', '1.23.0', '1.22.1', '1.22.0', '1.21.0', '1.20.0', '1.19.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['bazel']
};
export type BazelPackage = typeof bazelPackage