/**
 * **tree-sitter** - Parser generator tool and incremental parsing library
 *
 * @domain `tree-sitter.github.io`
 * @programs `tree-sitter`
 * @version `0.25.6` (28 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install tree-sitter`
 * @aliases `tree-sitter`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.treesitter
 * // Or access via domain
 * const samePkg = pantry.treesittergithubio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "tree-sitter.github.io"
 * console.log(pkg.description) // "Parser generator tool and incremental parsing l..."
 * console.log(pkg.programs)    // ["tree-sitter"]
 * console.log(pkg.versions[0]) // "0.25.6" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/tree-sitter-github-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const treesitterPackage: {
  /**
   * The display name of this package.
   */
  name: 'tree-sitter.github.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'tree-sitter.github.io';
  /**
   * Brief description of what this package does.
   */
  description: 'Parser generator tool and incremental parsing library';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tree-sitter.github.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install tree-sitter';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['tree-sitter'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.25.6', '0.25.5', '0.25.4', '0.25.3', '0.25.2', '0.25.1', '0.25.0', '0.24.7', '0.24.6', '0.24.5', '0.24.4', '0.24.3', '0.24.2', '0.24.1', '0.24.0', '0.23.2', '0.23.1', '0.23.0', '0.22.6', '0.22.5', '0.22.4', '0.22.3', '0.22.2', '0.22.1', '0.22.0', '0.21.0', '0.20.9', '0.20.8'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['tree-sitter']
};
export type TreesitterPackage = typeof treesitterPackage