/**
 * **epstool** - Edit preview images and fix bounding boxes in EPS files
 *
 * @domain `ghostgum.com.au/epstool`
 * @programs `epstool`
 * @version `3.9.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install epstool`
 * @name `epstool`
 * @dependencies `ghostscript.com`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.epstool
 * // Or access via domain
 * const samePkg = pantry.ghostgumcomauepstool
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "epstool"
 * console.log(pkg.description) // "Edit preview images and fix bounding boxes in E..."
 * console.log(pkg.programs)    // ["epstool"]
 * console.log(pkg.versions[0]) // "3.9.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/ghostgum-com-au/epstool.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const epstoolPackage: {
  /**
   * The display name of this package.
   */
  name: 'epstool';
  /**
   * The canonical domain name for this package.
   */
  domain: 'ghostgum.com.au/epstool';
  /**
   * Brief description of what this package does.
   */
  description: 'Edit preview images and fix bounding boxes in EPS files';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ghostgum.com.au/epstool/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install epstool';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['epstool'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['ghostscript.com'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.9.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type EpstoolPackage = typeof epstoolPackage