/**
 * **speexdec** - Audio codec designed for speech
 *
 * @domain `speex.org`
 * @programs `speexdec`
 * @version `1.2.1` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install speexdec`
 * @aliases `speexdec`
 * @dependencies `xiph.org/ogg`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.speexdec
 * // Or access via domain
 * const samePkg = pantry.speexorg
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "speex.org"
 * console.log(pkg.description) // "Audio codec designed for speech"
 * console.log(pkg.programs)    // ["speexdec"]
 * console.log(pkg.versions[0]) // "1.2.1" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/speex-org.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const speexdecPackage: {
  /**
   * The display name of this package.
   */
  name: 'speex.org';
  /**
   * The canonical domain name for this package.
   */
  domain: 'speex.org';
  /**
   * Brief description of what this package does.
   */
  description: 'Audio codec designed for speech';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/speex.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 speexdec';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['speexdec'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['xiph.org/ogg'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.2.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['speexdec']
};
export type SpeexdecPackage = typeof speexdecPackage