/**
 * **sasqwatch** - A modern take on the classic watch command
 *
 * @domain `github.com/fabio42/sasqwatch`
 * @programs `sasqwatch`
 * @version `0.2.5` (7 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install sasqwatch`
 * @name `sasqwatch`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.sasqwatch
 * // Or access via domain
 * const samePkg = pantry.githubcomfabio42sasqwatch
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "sasqwatch"
 * console.log(pkg.description) // "A modern take on the classic watch command"
 * console.log(pkg.programs)    // ["sasqwatch"]
 * console.log(pkg.versions[0]) // "0.2.5" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/fabio42/sasqwatch.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const sasqwatchPackage: {
  /**
   * The display name of this package.
   */
  name: 'sasqwatch';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/fabio42/sasqwatch';
  /**
   * Brief description of what this package does.
   */
  description: 'A modern take on the classic watch command';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/fabio42/sasqwatch/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install sasqwatch';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['sasqwatch'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['0.2.5', '0.2.4', '0.2.3', '0.2.2', '0.2.1', '0.2.0', '0.1.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type SasqwatchPackage = typeof sasqwatchPackage