import * as react from 'react'; import { HTMLAttributes } from 'react'; declare const pillVariants: { readonly outline: ""; readonly muted: ""; readonly success: ""; readonly error: ""; readonly solid: "bg-tollerud-surface-raised text-tollerud-text-primary border-transparent"; readonly accent: "bg-tollerud-yellow/15 border border-tollerud-yellow/30 text-tollerud-yellow"; }; interface PillProps extends HTMLAttributes { variant?: keyof typeof pillVariants; } declare const Pill: react.ForwardRefExoticComponent>; export { Pill, type PillProps };