/**
 * **attrs.org** - Python Classes Without Boilerplate
 *
 * @domain `attrs.org`
 * @version `25.3.0` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +attrs.org -- $SHELL -i`
 * @homepage https://www.attrs.org/
 * @dependencies `python.org~3.11`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.attrsorg
 * console.log(pkg.name)        // "attrs.org"
 * console.log(pkg.description) // "Python Classes Without Boilerplate"
 * console.log(pkg.versions[0]) // "25.3.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/attrs-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const attrsorgPackage: {
  /**
   * The display name of this package.
   */
  name: 'attrs.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'attrs.org';
  /**
   * Brief description of what this package does.
   */
  description: 'Python Classes Without Boilerplate';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/attrs.org/package.yml';
  homepageUrl: 'https://www.attrs.org/';
  githubUrl: 'https://github.com/python-attrs/attrs';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +attrs.org -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['python.org~3.11'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['25.3.0', '25.2.0', '25.1.0', '24.3.0', '24.2.0', '24.1.0', '23.2.0'];
  aliases: readonly []
};
export type AttrsorgPackage = typeof attrsorgPackage