/**
 * **mint** - Dependency manager that installs and runs Swift command-line tool packages
 *
 * @domain `github.com/yonaskolb/Mint`
 * @programs `mint`
 * @version `0.18.0` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install mint`
 * @aliases `mint`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.mint
 * // Or access via domain
 * const samePkg = pantry.githubcomyonaskolbmint
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "Mint"
 * console.log(pkg.description) // "Dependency manager that installs and runs Swift..."
 * console.log(pkg.programs)    // ["mint"]
 * console.log(pkg.versions[0]) // "0.18.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/yonaskolb/Mint.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const mintPackage: {
  /**
   * The display name of this package.
   */
  name: 'Mint';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/yonaskolb/Mint';
  /**
   * Brief description of what this package does.
   */
  description: 'Dependency manager that installs and runs Swift command-line tool packages';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/yonaskolb/Mint/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/yonaskolb/Mint';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install mint';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['mint'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.18.0', '0.17.5'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['mint']
};
export type MintPackage = typeof mintPackage