/**
 * **snyk** - Scans and monitors projects for security vulnerabilities
 *
 * @domain `snyk.io`
 * @programs `snyk`
 * @version `1.1297.2` (42 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install snyk`
 * @aliases `snyk`
 * @dependencies `nodejs.org^20`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.snyk
 * // Or access via domain
 * const samePkg = pantry.snykio
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "snyk.io"
 * console.log(pkg.description) // "Scans and monitors projects for security vulner..."
 * console.log(pkg.programs)    // ["snyk"]
 * console.log(pkg.versions[0]) // "1.1297.2" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/snyk-io.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const snykPackage: {
  /**
   * The display name of this package.
   */
  name: 'snyk.io';
  /**
   * The canonical domain name for this package.
   */
  domain: 'snyk.io';
  /**
   * Brief description of what this package does.
   */
  description: 'Scans and monitors projects for security vulnerabilities';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/snyk.io/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install snyk';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['snyk'];
  companions: readonly [];
  /**
   * Required dependencies for this package.
   * These will be automatically installed.
   */
  dependencies: readonly ['nodejs.org^20'];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.1297.2', '1.1297.1', '1.1297.0', '1.1296.2', '1.1296.1', '1.1296.0', '1.1295.4', '1.1295.3', '1.1295.2', '1.1295.1', '1.1295.0', '1.1294.3', '1.1294.2', '1.1294.1', '1.1294.0', '1.1293.1', '1.1293.0', '1.1292.4', '1.1292.2', '1.1292.1', '1.1292.0', '1.1291.1', '1.1291.0', '1.1290.0', '1.1289.0', '1.1288.1', '1.1288.0', '1.1287.0', '1.1286.4', '1.1286.3', '1.1286.2', '1.1286.1', '1.1286.0', '1.1285.1', '1.1285.0', '1.1284.0', '1.1283.1', '1.1283.0', '1.1282.1', '1.1282.0', '1.1281.0', '1.1280.1'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['snyk']
};
export type SnykPackage = typeof snykPackage