/**
 * **rav1e** - Fastest and safest AV1 video encoder
 *
 * @domain `github.com/xiph/rav1e`
 * @programs `rav1e`
 * @version `0.8.1` (8 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install rav1e`
 * @name `rav1e`
 * @dependencies `nasm.us^2.14.02`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.rav1e
 * // Or access via domain
 * const samePkg = pantry.githubcomxiphrav1e
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "rav1e"
 * console.log(pkg.description) // "Fastest and safest AV1 video encoder"
 * console.log(pkg.programs)    // ["rav1e"]
 * console.log(pkg.versions[0]) // "0.8.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/xiph/rav1e.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const rav1ePackage: {
  /**
   * The display name of this package.
   */
  name: 'rav1e';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/xiph/rav1e';
  /**
   * Brief description of what this package does.
   */
  description: 'Fastest and safest AV1 video encoder';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/xiph/rav1e/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install rav1e';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['rav1e'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['nasm.us^2.14.02'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.8.1', '0.8.0', '0.7.1', '0.7.0', '0.6.6', '0.6.5', '0.6.4', '0.6.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type Rav1ePackage = typeof rav1ePackage