/**
 * **sourcery** - Meta-programming for Swift, stop writing boilerplate code.
 *
 * @domain `github.com/krzysztofzablocki/Sourcery`
 * @programs `sourcery`
 * @version `2.2.7` (19 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install sourcery`
 * @name `Sourcery`
 * @aliases `sourcery`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.sourcery
 * // Or access via domain
 * const samePkg = pantry.githubcomkrzysztofzablockisourcery
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "Sourcery"
 * console.log(pkg.description) // "Meta-programming for Swift, stop writing boiler..."
 * console.log(pkg.programs)    // ["sourcery"]
 * console.log(pkg.versions[0]) // "2.2.7" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/krzysztofzablocki/Sourcery.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const sourceryPackage: {
  /**
   * The display name of this package.
   */
  name: 'Sourcery';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/krzysztofzablocki/Sourcery';
  /**
   * Brief description of what this package does.
   */
  description: 'Meta-programming for Swift, stop writing boilerplate code.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/krzysztofzablocki/Sourcery/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install sourcery';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['sourcery'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.2.7', '2.2.6', '2.2.5', '2.2.4', '2.2.3', '2.2.2', '2.2.1', '2.2.0', '2.1.8', '2.1.7', '2.1.6', '2.1.5', '2.1.4', '2.1.3', '2.1.2', '2.1.1', '2.1.0', '2.0.3', '2.0.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['sourcery']
};
export type SourceryPackage = typeof sourceryPackage