/**
 * **teller** - Cloud native secrets management for developers - never leave your command line for secrets.
 *
 * @domain `tlr.dev`
 * @programs `teller`
 * @version `2.0.7` (5 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install teller`
 * @aliases `teller`
 * @dependencies `openssl.org^1.1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.teller
 * // Or access via domain
 * const samePkg = pantry.tlrdev
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "tlr.dev"
 * console.log(pkg.description) // "Cloud native secrets management for developers ..."
 * console.log(pkg.programs)    // ["teller"]
 * console.log(pkg.versions[0]) // "2.0.7" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/tlr-dev.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const tellerPackage: {
  /**
   * The display name of this package.
   */
  name: 'tlr.dev';
  /**
   * The canonical domain name for this package.
   */
  domain: 'tlr.dev';
  /**
   * Brief description of what this package does.
   */
  description: 'Cloud native secrets management for developers - never leave your command line for secrets.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tlr.dev/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/SpectralOps/teller';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install teller';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['teller'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['openssl.org^1.1'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.0.7', '2.0.6', '2.0.5', '2.0.4', '1.5.6'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['teller']
};
export type TellerPackage = typeof tellerPackage