/**
 * **screenresolution** - Command line utility for getting, setting and listing display resolution on Mac OS X 10.6+
 *
 * @domain `github.com/jhford/screenresolution`
 * @programs `screenresolution`
 * @version `1.6.0` (1 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install screenresolution`
 * @name `screenresolution`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access the package
 * const pkg = pantry.screenresolution
 * // Or access via domain
 * const samePkg = pantry.githubcomjhfordscreenresolution
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "screenresolution"
 * console.log(pkg.description) // "Command line utility for getting, setting and l..."
 * console.log(pkg.programs)    // ["screenresolution"]
 * console.log(pkg.versions[0]) // "1.6.0" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/github-com/jhford/screenresolution.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const screenresolutionPackage: {
  /**
   * The display name of this package.
   */
  name: 'screenresolution';
  /**
   * The canonical domain name for this package.
   */
  domain: 'github.com/jhford/screenresolution';
  /**
   * Brief description of what this package does.
   */
  description: 'Command line utility for getting, setting and listing display resolution on Mac OS X 10.6+';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jhford/screenresolution/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install screenresolution';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['screenresolution'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['1.6.0'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly []
};
export type ScreenresolutionPackage = typeof screenresolutionPackage