/**
 * **musepack.net** - Audio compression format and tools
 *
 * @domain `musepack.net`
 * @programs `mpc2sv8`, `mpcchap`, `mpccut`, `mpcdec`, `mpcenc`, ... (+2 more)
 * @version `475.0.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install +musepack.net -- $SHELL -i`
 * @dependencies `musepack.net/libreplaygain`, `musepack.net/libcuefile`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * const pkg = pantry.musepacknet
 * console.log(pkg.name)        // "musepack.net"
 * console.log(pkg.description) // "Audio compression format and tools"
 * console.log(pkg.programs)    // ["mpc2sv8", "mpcchap", ...]
 * console.log(pkg.versions[0]) // "475.0.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/musepack-net.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const musepacknetPackage: {
  /**
   * The display name of this package.
   */
  name: 'musepack.net';
  /**
   * The canonical domain name for this package.
   */
  domain: 'musepack.net';
  /**
   * Brief description of what this package does.
   */
  description: 'Audio compression format and tools';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/musepack.net/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install +musepack.net -- $SHELL -i';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['mpc2sv8', 'mpcchap', 'mpccut', 'mpcdec', 'mpcenc', 'mpcgain', 'wavcmp'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['musepack.net/libreplaygain', 'musepack.net/libcuefile'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['475.0.0'];
  aliases: readonly []
};
export type MusepacknetPackage = typeof musepacknetPackage