/**
 * **flac** - Free Lossless Audio Codec
 *
 * @domain `xiph.org/flac`
 * @programs `flac`
 * @version `1.5.0` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install flac`
 * @name `flac`
 * @dependencies `xiph.org/ogg^1.3.5`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.flac
 * // Or access via domain
 * const samePkg = pantry.xiphorgflac
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "flac"
 * console.log(pkg.description) // "Free Lossless Audio Codec"
 * console.log(pkg.programs)    // ["flac"]
 * console.log(pkg.versions[0]) // "1.5.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/xiph-org/flac.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const flacPackage: {
  /**
   * The display name of this package.
   */
  name: 'flac';
  /**
   * The canonical domain name for this package.
   */
  domain: 'xiph.org/flac';
  /**
   * Brief description of what this package does.
   */
  description: 'Free Lossless Audio Codec';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/xiph.org/flac/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install flac';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['flac'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['xiph.org/ogg^1.3.5'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.5.0', '1.4.3', '1.4.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type FlacPackage = typeof flacPackage