/**
 * **tidy** - The granddaddy of HTML tools, with support for modern standards
 *
 * @domain `html-tidy.org`
 * @programs `tidy`
 * @version `5.8.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install tidy`
 * @aliases `tidy`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.tidy
 * // Or access via domain
 * const samePkg = pantry.htmltidyorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "html-tidy.org"
 * console.log(pkg.description) // "The granddaddy of HTML tools, with support for ..."
 * console.log(pkg.programs)    // ["tidy"]
 * console.log(pkg.versions[0]) // "5.8.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/html-tidy-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const tidyPackage: {
  /**
   * The display name of this package.
   */
  name: 'html-tidy.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'html-tidy.org';
  /**
   * Brief description of what this package does.
   */
  description: 'The granddaddy of HTML tools, with support for modern standards';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/html-tidy.org/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install tidy';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['tidy'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['5.8.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['tidy']
};
export type TidyPackage = typeof tidyPackage