/**
 * **tar** - Multi-format archive and compression library
 *
 * @domain `gnu.org/tar`
 * @programs `tar`
 * @version `1.35.0` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install tar`
 * @name `tar`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.tar
 * // Or access via domain
 * const samePkg = pantry.gnuorgtar
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "tar"
 * console.log(pkg.description) // "Multi-format archive and compression library"
 * console.log(pkg.programs)    // ["tar"]
 * console.log(pkg.versions[0]) // "1.35.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gnu-org/tar.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const tarPackage: {
  /**
   * The display name of this package.
   */
  name: 'tar';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gnu.org/tar';
  /**
   * Brief description of what this package does.
   */
  description: 'Multi-format archive and compression library';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/tar/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install tar';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['tar'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.35.0', '1.34.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type TarPackage = typeof tarPackage