/**
 * **railway** - Develop and deploy code with zero configuration
 *
 * @domain `railway.app`
 * @programs `railway`
 * @version `4.5.3` (51 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install railway`
 * @aliases `railway`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.railway
 * // Or access via domain
 * const samePkg = pantry.railwayapp
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "railway.app"
 * console.log(pkg.description) // "Develop and deploy code with zero configuration"
 * console.log(pkg.programs)    // ["railway"]
 * console.log(pkg.versions[0]) // "4.5.3" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/railway-app.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const railwayPackage: {
  /**
   * The display name of this package.
   */
  name: 'railway.app';
  /**
   * The canonical domain name for this package.
   */
  domain: 'railway.app';
  /**
   * Brief description of what this package does.
   */
  description: 'Develop and deploy code with zero configuration';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/railway.app/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/railwayapp/cli';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install railway';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['railway'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['4.5.3', '4.5.2', '4.5.1', '4.5.0', '4.4.1', '4.4.0', '4.3.0', '4.2.0', '4.1.0', '4.0.1', '4.0.0', '3.23.0', '3.22.2', '3.22.0', '3.21.0', '3.20.2', '3.20.1', '3.20.0', '3.19.1', '3.19.0', '3.18.0', '3.17.10', '3.17.9', '3.17.8', '3.17.7', '3.17.6', '3.17.1', '3.17.0', '3.15.3', '3.15.2', '3.15.1', '3.14.1', '3.14.0', '3.13.0', '3.12.2', '3.12.1', '3.12.0', '3.11.4', '3.11.2', '3.11.1', '3.11.0', '3.10.0', '3.9.3', '3.9.0', '3.8.2', '3.8.1', '3.8.0', '3.7.2', '3.7.0', '3.6.0', '3.5.2'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['railway']
};
export type RailwayPackage = typeof railwayPackage