/**
 * **dog** - A command-line DNS client.
 *
 * @domain `dns.lookup.dog`
 * @programs `dog`
 * @version `0.1.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install dog`
 * @aliases `dog`
 * @dependencies `openssl.org^1.1`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.dog
 * // Or access via domain
 * const samePkg = pantry.dnslookupdog
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "dns.lookup.dog"
 * console.log(pkg.description) // "A command-line DNS client."
 * console.log(pkg.programs)    // ["dog"]
 * console.log(pkg.versions[0]) // "0.1.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/dns-lookup-dog.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const dogPackage: {
  /**
   * The display name of this package.
   */
  name: 'dns.lookup.dog';
  /**
   * The canonical domain name for this package.
   */
  domain: 'dns.lookup.dog';
  /**
   * Brief description of what this package does.
   */
  description: 'A command-line DNS client.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dns.lookup.dog/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install dog';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['dog'];
  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 ['0.1.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['dog']
};
export type DogPackage = typeof dogPackage