/**
 * **scmp_sys_resolver** - Interface to the Linux Kernel's syscall filtering mechanism
 *
 * @domain `github.com/seccomp/libseccomp`
 * @programs `scmp_sys_resolver`
 * @version `2.6.0` (3 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install scmp_sys_resolver`
 * @name `libseccomp`
 * @aliases `scmp_sys_resolver`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.scmpsysresolver
 * // Or access via domain
 * const samePkg = pantry.githubcomseccomplibseccomp
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "libseccomp"
 * console.log(pkg.description) // "Interface to the Linux Kernel's syscall filteri..."
 * console.log(pkg.programs)    // ["scmp_sys_resolver"]
 * console.log(pkg.versions[0]) // "2.6.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/seccomp/libseccomp.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const scmpsysresolverPackage: {
  /**
   * The display name of this package.
   */
  name: 'libseccomp';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/seccomp/libseccomp';
  /**
   * Brief description of what this package does.
   */
  description: 'Interface to the Linux Kernel\'s syscall filtering mechanism';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/seccomp/libseccomp/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install scmp_sys_resolver';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['scmp_sys_resolver'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['2.6.0', '2.5.6', '2.5.5'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['scmp_sys_resolver']
};
export type ScmpsysresolverPackage = typeof scmpsysresolverPackage