/**
 * **eliza** - Autonomous agents for everyone
 *
 * @domain `elizaOS.github.io`
 * @programs `eliza`
 * @version `1.0.11` (13 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install eliza`
 * @aliases `eliza`, `elizaOS`
 * @dependencies `python.org>=2.7`, `nodejs.org~23.3`, `pnpm.io`, ... (+1 more)
 * @companions `git-scm.org`, `ffmpeg.org`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.eliza
 * // Or access via domain
 * const samePkg = pantry.elizaosgithubio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "elizaOS.github.io"
 * console.log(pkg.description) // "Autonomous agents for everyone"
 * console.log(pkg.programs)    // ["eliza"]
 * console.log(pkg.versions[0]) // "1.0.11" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/elizaOS-github-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const elizaPackage: {
  /**
   * The display name of this package.
   */
  name: 'elizaOS.github.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'elizaOS.github.io';
  /**
   * Brief description of what this package does.
   */
  description: 'Autonomous agents for everyone';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/elizaOS.github.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/elizaOS/eliza';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install eliza';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['eliza'];
  /**
   * Related packages that work well with this package.
   * Consider installing these for enhanced functionality.
   */
  companions: readonly ['git-scm.org', 'ffmpeg.org'];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['python.org>=2.7', 'nodejs.org~23.3', 'pnpm.io', 'bun.sh^1.2 # since 1.0.5'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.0.11', '1.0.10', '1.0.9', '1.0.8', '1.0.7', '1.0.6', '1.0.5', '0.25.19', '0.25.9', '0.25.8', '0.1.9', '0.1.8.1', '0.1.7'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['eliza', 'elizaOS']
};
export type ElizaPackage = typeof elizaPackage