/**
 * **git-lfs** - Git extension for versioning large files
 *
 * @domain `git-lfs.com`
 * @programs `git-lfs`
 * @version `3.6.1` (6 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install git-lfs`
 * @aliases `git-lfs`
 * @dependencies `git-scm.org`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.gitlfs
 * // Or access via domain
 * const samePkg = pantry.gitlfscom
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "git-lfs.com"
 * console.log(pkg.description) // "Git extension for versioning large files"
 * console.log(pkg.programs)    // ["git-lfs"]
 * console.log(pkg.versions[0]) // "3.6.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/git-lfs-com.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gitlfsPackage: {
  /**
   * The display name of this package.
   */
  name: 'git-lfs.com';
  /**
   * The canonical domain name for this package.
   */
  domain: 'git-lfs.com';
  /**
   * Brief description of what this package does.
   */
  description: 'Git extension for versioning large files';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/git-lfs.com/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install git-lfs';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['git-lfs'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['git-scm.org'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.6.1', '3.6.0', '3.5.1', '3.4.1', '3.4.0', '3.3.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['git-lfs']
};
export type GitlfsPackage = typeof gitlfsPackage