/**
 * **cog** - The Conventional Commits toolbox
 *
 * @domain `cocogitto.io`
 * @programs `cog`
 * @version `6.3.0` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install cog`
 * @aliases `cog`
 * @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.cog
 * // Or access via domain
 * const samePkg = pantry.cocogittoio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "cocogitto.io"
 * console.log(pkg.description) // "The Conventional Commits toolbox"
 * console.log(pkg.programs)    // ["cog"]
 * console.log(pkg.versions[0]) // "6.3.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/cocogitto-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const cogPackage: {
  /**
   * The display name of this package.
   */
  name: 'cocogitto.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'cocogitto.io';
  /**
   * Brief description of what this package does.
   */
  description: 'The Conventional Commits toolbox';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/cocogitto.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install cog';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['cog'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['libgit2.org~1.7 # links to libgit2.so.1.7'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['6.3.0', '6.2.0', '6.1.0', '6.0.1', '6.0.0', '5.6.0', '5.5.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['cog']
};
export type CogPackage = typeof cogPackage