/**
 * **prettyping** - `prettyping` is a wrapper around the standard `ping` tool, making the output prettier, more colorful, more compact, and easier to read.
 *
 * @domain `denilson.sa.nom.br/prettyping`
 * @programs `prettyping`
 * @version `1.1.0` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install prettyping`
 * @name `prettyping`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.prettyping
 * // Or access via domain
 * const samePkg = pantry.denilsonsanombrprettyping
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "prettyping"
 * console.log(pkg.description) // "`prettyping` is a wrapper around the standard `..."
 * console.log(pkg.programs)    // ["prettyping"]
 * console.log(pkg.versions[0]) // "1.1.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/denilson-sa-nom-br/prettyping.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const prettypingPackage: {
  /**
   * The display name of this package.
   */
  name: 'prettyping';
  /**
   * The canonical domain name for this package.
   */
  domain: 'denilson.sa.nom.br/prettyping';
  /**
   * Brief description of what this package does.
   */
  description: '`prettyping` is a wrapper around the standard `ping` tool, making the output prettier, more colorful, more compact, and easier to read.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/denilson.sa.nom.br/prettyping/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install prettyping';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['prettyping'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.1.0', '1.0.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type PrettypingPackage = typeof prettypingPackage