/**
 * **eureka** - 💡 CLI tool to input and store your ideas without leaving the terminal
 *
 * @domain `crates.io/eureka`
 * @programs `eureka`
 * @version `2.0.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install eureka`
 * @name `eureka`
 * @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.eureka
 * // Or access via domain
 * const samePkg = pantry.cratesioeureka
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "eureka"
 * console.log(pkg.description) // "💡 CLI tool to input and store your ideas witho..."
 * console.log(pkg.programs)    // ["eureka"]
 * console.log(pkg.versions[0]) // "2.0.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/crates-io/eureka.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const eurekaPackage: {
  /**
   * The display name of this package.
   */
  name: 'eureka';
  /**
   * The canonical domain name for this package.
   */
  domain: 'crates.io/eureka';
  /**
   * Brief description of what this package does.
   */
  description: '💡 CLI tool to input and store your ideas without leaving the terminal';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/eureka/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install eureka';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['eureka'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['libgit2.org~1.7 # links to libgit2.so.1.7'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.0.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type EurekaPackage = typeof eurekaPackage