import * as React from 'react';

/**
 * Chip — from @kuppwest/apple-clean@0.1.0.
 */
export interface ChipProps {
  /** `blue` = filled brand-blue chip for the highlighted offer; `neutral` = light-gray chip with muted text. */
  tone?: "blue" | "neutral";
  /** Short uppercase label, one to three words, e.g. "Dieses Angebot". */
  children: React.ReactNode;
  className?: string;
  id?: string;
  style?: CSSProperties;
}

export declare const Chip: React.ComponentType<ChipProps>;
