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