/**
 * **sfcgal-config** - C++ wrapper library around CGAL
 *
 * @domain `sfcgal.org`
 * @programs `sfcgal-config`
 * @version `2.1.0` (6 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install sfcgal-config`
 * @aliases `sfcgal-config`
 * @dependencies `boost.org`, `cgal.org`, `gnu.org/gmp`, ... (+1 more)
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.sfcgalconfig
 * // Or access via domain
 * const samePkg = pantry.sfcgalorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "sfcgal.org"
 * console.log(pkg.description) // "C++ wrapper library around CGAL"
 * console.log(pkg.programs)    // ["sfcgal-config"]
 * console.log(pkg.versions[0]) // "2.1.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/sfcgal-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const sfcgalconfigPackage: {
  /**
   * The display name of this package.
   */
  name: 'sfcgal.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'sfcgal.org';
  /**
   * Brief description of what this package does.
   */
  description: 'C++ wrapper library around CGAL';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sfcgal.org/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install sfcgal-config';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['sfcgal-config'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['boost.org', 'cgal.org', 'gnu.org/gmp', 'gnu.org/mpfr'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.1.0', '2.0.0', '1.5.2', '1.5.1', '1.5.0', '1.4.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['sfcgal-config']
};
export type SfcgalconfigPackage = typeof sfcgalconfigPackage