/**
 * **glog** - C++ implementation of the Google logging module
 *
 * @domain `google.com/glog`
 * @version `0.7.1` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +google.com/glog -- $SHELL -i`
 * @dependencies `gflags.github.io`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.googlecomglog
 * console.log(pkg.name)        // "glog"
 * console.log(pkg.description) // "C++ implementation of the Google logging module"
 * console.log(pkg.versions[0]) // "0.7.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/google-com/glog.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const googlecomglogPackage: {
  /**
   * The display name of this package.
   */
  name: 'glog';
  /**
   * The canonical domain name for this package.
   */
  domain: 'google.com/glog';
  /**
   * Brief description of what this package does.
   */
  description: 'C++ implementation of the Google logging module';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/glog/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +google.com/glog -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['gflags.github.io'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.7.1', '0.7.0', '0.6.0'];
  aliases: readonly []
};
export type GooglecomglogPackage = typeof googlecomglogPackage