/**
 * **lame** - High quality MPEG Audio Layer III (MP3) encoder
 *
 * @domain `lame.sourceforge.io`
 * @programs `lame`
 * @version `3.100.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install lame`
 * @aliases `lame`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.lame
 * // Or access via domain
 * const samePkg = pantry.lamesourceforgeio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "lame.sourceforge.io"
 * console.log(pkg.description) // "High quality MPEG Audio Layer III (MP3) encoder"
 * console.log(pkg.programs)    // ["lame"]
 * console.log(pkg.versions[0]) // "3.100.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/lame-sourceforge-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const lamePackage: {
  /**
   * The display name of this package.
   */
  name: 'lame.sourceforge.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'lame.sourceforge.io';
  /**
   * Brief description of what this package does.
   */
  description: 'High quality MPEG Audio Layer III (MP3) encoder';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lame.sourceforge.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install lame';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['lame'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['3.100.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['lame']
};
export type LamePackage = typeof lamePackage