/**
 * **aws-whoami** - A tool to show what AWS account and identity you're using.
 *
 * @domain `github.com/benkehoe/aws-whoami-golang`
 * @programs `aws-whoami`
 * @version `2.6.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install aws-whoami`
 * @aliases `aws-whoami`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.awswhoami
 * // Or access via domain
 * const samePkg = pantry.githubcombenkehoeawswhoamigolang
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "aws-whoami-golang"
 * console.log(pkg.description) // "A tool to show what AWS account and identity yo..."
 * console.log(pkg.programs)    // ["aws-whoami"]
 * console.log(pkg.versions[0]) // "2.6.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/benkehoe/aws-whoami-golang.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const awswhoamiPackage: {
  /**
   * The display name of this package.
   */
  name: 'aws-whoami-golang';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/benkehoe/aws-whoami-golang';
  /**
   * Brief description of what this package does.
   */
  description: 'A tool to show what AWS account and identity you\'re using.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/benkehoe/aws-whoami-golang/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install aws-whoami';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['aws-whoami'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.6.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['aws-whoami']
};
export type AwswhoamiPackage = typeof awswhoamiPackage