/**
 * **tailwindcss** - A utility-first CSS framework for rapid UI development.
 *
 * @domain `tailwindcss.com`
 * @programs `tailwindcss`
 * @version `4.1.10` (44 versions available)
 * @versions From newest version to oldest.
 *
 * @install `launchpad install tailwindcss`
 * @aliases `tailwindcss`
 *
 * @example
 * ```typescript
 * import { pantry } from 'ts-pkgx'
 *
 * // Access via alias (recommended)
 * const pkg = pantry.tailwindcss
 * // Or access via domain
 * const samePkg = pantry.tailwindcsscom
 * console.log(pkg === samePkg) // true
 * console.log(pkg.name)        // "tailwindcss.com"
 * console.log(pkg.description) // "A utility-first CSS framework for rapid UI deve..."
 * console.log(pkg.programs)    // ["tailwindcss"]
 * console.log(pkg.versions[0]) // "4.1.10" (latest)
 * ```
 *
 * @see https://ts-pkgx.netlify.app/packages/tailwindcss-com.md
 * @see https://ts-pkgx.netlify.app/usage
 */
export declare const tailwindcssPackage: {
  /**
   * The display name of this package.
   */
  name: 'tailwindcss.com';
  /**
   * The canonical domain name for this package.
   */
  domain: 'tailwindcss.com';
  /**
   * Brief description of what this package does.
   */
  description: 'A utility-first CSS framework for rapid UI development.';
  packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tailwindcss.com/package.yml';
  homepageUrl: '';
  githubUrl: 'https://github.com/pkgxdev/pantry/';
  /**
   * Command to install this package using launchpad.
   * @example launchpad install package-name
   */
  installCommand: 'launchpad install tailwindcss';
  /**
   * Executable programs provided by this package.
   * These can be run after installation.
   */
  programs: readonly ['tailwindcss'];
  companions: readonly [];
  dependencies: readonly [];
  /**
   * Available versions from newest to oldest.
   * @see https://ts-pkgx.netlify.app/usage for installation instructions
   */
  versions: readonly ['4.1.10', '4.1.9', '4.1.8', '4.1.7', '4.1.6', '4.1.5', '4.1.4', '4.1.3', '4.1.2', '4.1.1', '4.1.0', '4.0.17', '4.0.16', '4.0.15', '4.0.14', '4.0.13', '4.0.12', '4.0.11', '4.0.10', '4.0.9', '4.0.8', '4.0.7', '4.0.6', '4.0.5', '4.0.4', '4.0.3', '4.0.2', '4.0.1', '4.0.0', '3.4.17', '3.4.16', '3.4.15', '3.4.14', '3.4.13', '3.4.12', '3.4.11', '3.4.10', '3.4.9', '3.4.8', '3.4.7', '3.4.6', '3.4.5', '3.4.4', '3.4.3'];
  /**
   * Alternative names for this package.
   * You can use any of these names to access the package.
   */
  aliases: readonly ['tailwindcss']
};
export type TailwindcssPackage = typeof tailwindcssPackage