/**
 * **robot** - Generic automation framework for acceptance testing and RPA
 *
 * @domain `robotframework.org`
 * @programs `robot`
 * @version `7.3.1` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install robot`
 * @aliases `robot`
 * @dependencies `pkgx.sh^1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.robot
 * // Or access via domain
 * const samePkg = pantry.robotframeworkorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "robotframework.org"
 * console.log(pkg.description) // "Generic automation framework for acceptance tes..."
 * console.log(pkg.programs)    // ["robot"]
 * console.log(pkg.versions[0]) // "7.3.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/robotframework-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const robotPackage: {
  /**
   * The display name of this package.
   */
  name: 'robotframework.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'robotframework.org';
  /**
   * Brief description of what this package does.
   */
  description: 'Generic automation framework for acceptance testing and RPA';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/robotframework.org/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install robot';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['robot'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['pkgx.sh^1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['7.3.1', '7.3.0', '7.2.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['robot']
};
export type RobotPackage = typeof robotPackage