/**
 * **curlie** - The power of curl, the ease of use of httpie.
 *
 * @domain `curlie.io`
 * @programs `curlie`
 * @version `1.8.2` (2 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install curlie`
 * @aliases `curlie`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.curlie
 * // Or access via domain
 * const samePkg = pantry.curlieio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "curlie.io"
 * console.log(pkg.description) // "The power of curl, the ease of use of httpie."
 * console.log(pkg.programs)    // ["curlie"]
 * console.log(pkg.versions[0]) // "1.8.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/curlie-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const curliePackage: {
  /**
   * The display name of this package.
   */
  name: 'curlie.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'curlie.io';
  /**
   * Brief description of what this package does.
   */
  description: 'The power of curl, the ease of use of httpie.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/curlie.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/rs/curlie';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install curlie';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['curlie'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.8.2', '1.7.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['curlie']
};
export type CurliePackage = typeof curliePackage