/**
 * **freetype.org** - pkgx package
 *
 * @domain `freetype.org`
 * @version `2.13.3` (4 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +freetype.org -- $SHELL -i`
 * @dependencies `libpng.org@1`, `zlib.net@1`, `sourceware.org/bzip2@1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.freetypeorg
 * console.log(pkg.name)        // "freetype.org"
 * console.log(pkg.versions[0]) // "2.13.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/freetype-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const freetypeorgPackage: {
  /**
   * The display name of this package.
   */
  name: 'freetype.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'freetype.org';
  /**
   * Brief description of what this package does.
   */
  description: '';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freetype.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 +freetype.org -- $SHELL -i';
  programs: readonly [];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['libpng.org@1', 'zlib.net@1', 'sourceware.org/bzip2@1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.13.3', '2.13.2', '2.13.1', '2.12.1'];
  aliases: readonly []
};
export type FreetypeorgPackage = typeof freetypeorgPackage