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