/**
 * **xsv** - A fast CSV command line toolkit written in Rust.
 *
 * @domain `github.com/burntsushi/xsv`
 * @programs `xsv`
 * @version `0.13.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install xsv`
 * @name `xsv`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.xsv
 * // Or access via domain
 * const samePkg = pantry.githubcomburntsushixsv
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "xsv"
 * console.log(pkg.description) // "A fast CSV command line toolkit written in Rust."
 * console.log(pkg.programs)    // ["xsv"]
 * console.log(pkg.versions[0]) // "0.13.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/burntsushi/xsv.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const xsvPackage: {
  /**
   * The display name of this package.
   */
  name: 'xsv';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/burntsushi/xsv';
  /**
   * Brief description of what this package does.
   */
  description: 'A fast CSV command line toolkit written in Rust.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/burntsushi/xsv/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install xsv';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['xsv'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.13.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type XsvPackage = typeof xsvPackage