/**
 * **gphoto2** - The libgphoto2 camera access and control library.
 *
 * @domain `gphoto.org/libgphoto2`
 * @programs `gphoto2-config`, `gphoto2-port-config`
 * @version `2.5.31` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +gphoto.org/libgphoto2 -- $SHELL -i`
 * @aliases `gphoto2`
 * @dependencies `libgd.github.io^2.3`, `libjpeg-turbo.org^2`, `libexif.github.io^0.6`, ... (+4 more)
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.gphoto2
 * // Or access via domain
 * const samePkg = pantry.gphotoorglibgphoto2
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "libgphoto2"
 * console.log(pkg.description) // "The libgphoto2 camera access and control library."
 * console.log(pkg.programs)    // ["gphoto2-config", "gphoto2-port-config"]
 * console.log(pkg.versions[0]) // "2.5.31" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/gphoto-org/libgphoto2.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const gphoto2Package: {
  /**
   * The display name of this package.
   */
  name: 'libgphoto2';
  /**
   * The canonical domain name for this package.
   */
  domain: 'gphoto.org/libgphoto2';
  /**
   * Brief description of what this package does.
   */
  description: 'The libgphoto2 camera access and control library.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gphoto.org/libgphoto2/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +gphoto.org/libgphoto2 -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['gphoto2-config', 'gphoto2-port-config'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['libgd.github.io^2.3', 'libjpeg-turbo.org^2', 'libexif.github.io^0.6', 'gnu.org/libtool^2.4', 'libusb.info/compat^0.1', 'curl.se^8', 'gnome.org/libxml2^2.12'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.5.31'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['gphoto2']
};
export type Gphoto2Package = typeof gphoto2Package