/**
 * **mas** - :package: Mac App Store command line interface
 *
 * @domain `github.com/mas-cli/mas`
 * @programs `mas`
 * @version `2.2.2` (8 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install mas`
 * @name `mas`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.mas
 * // Or access via domain
 * const samePkg = pantry.githubcommasclimas
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "mas"
 * console.log(pkg.description) // ":package: Mac App Store command line interface"
 * console.log(pkg.programs)    // ["mas"]
 * console.log(pkg.versions[0]) // "2.2.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/mas-cli/mas.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const masPackage: {
  /**
   * The display name of this package.
   */
  name: 'mas';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/mas-cli/mas';
  /**
   * Brief description of what this package does.
   */
  description: ':package: Mac App Store command line interface';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mas-cli/mas/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install mas';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['mas'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.2.2', '2.2.1', '2.2.0', '2.1.0', '2.0.0', '1.9.0', '1.8.8', '1.8.7'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type MasPackage = typeof masPackage