/**
 * **rg** - ripgrep recursively searches directories for a regex pattern while respecting your gitignore
 *
 * @domain `crates.io/ripgrep`
 * @programs `rg`
 * @version `14.1.1` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install rg`
 * @aliases `rg`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.rg
 * // Or access via domain
 * const samePkg = pantry.cratesioripgrep
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "ripgrep"
 * console.log(pkg.description) // "ripgrep recursively searches directories for a ..."
 * console.log(pkg.programs)    // ["rg"]
 * console.log(pkg.versions[0]) // "14.1.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/crates-io/ripgrep.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const rgPackage: {
  /**
   * The display name of this package.
   */
  name: 'ripgrep';
  /**
   * The canonical domain name for this package.
   */
  domain: 'crates.io/ripgrep';
  /**
   * Brief description of what this package does.
   */
  description: 'ripgrep recursively searches directories for a regex pattern while respecting your gitignore';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/ripgrep/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install rg';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['rg'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['14.1.1', '14.1.0', '14.0.3', '14.0.2', '14.0.1', '14.0.0', '13.0.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['rg']
};
export type RgPackage = typeof rgPackage