/**
 * **ccache** - Object-file caching compiler wrapper
 *
 * @domain `ccache.dev`
 * @programs `ccache`
 * @version `4.11.3` (10 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install ccache`
 * @aliases `ccache`
 * @dependencies `github.com/redis/hiredis`, `facebook.com/zstd`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.ccache
 * // Or access via domain
 * const samePkg = pantry.ccachedev
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "ccache.dev"
 * console.log(pkg.description) // "Object-file caching compiler wrapper"
 * console.log(pkg.programs)    // ["ccache"]
 * console.log(pkg.versions[0]) // "4.11.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/ccache-dev.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const ccachePackage: {
  /**
   * The display name of this package.
   */
  name: 'ccache.dev';
  /**
   * The canonical domain name for this package.
   */
  domain: 'ccache.dev';
  /**
   * Brief description of what this package does.
   */
  description: 'Object-file caching compiler wrapper';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ccache.dev/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install ccache';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['ccache'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['github.com/redis/hiredis', 'facebook.com/zstd'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['4.11.3', '4.11.2', '4.11.1', '4.11.0', '4.10.2', '4.10.1', '4.10.0', '4.9.1', '4.9.0', '4.8.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['ccache']
};
export type CcachePackage = typeof ccachePackage