import React from 'react'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface PillProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { children?: React.ReactNode; color?: 'part-0' | 'part-1' | 'part-2' | 'part-3' | 'part-4' | 'part-5' | 'part-6' | 'part-7' | 'part-8' | 'part-9'; getRef?: GetRef; id?: string; } export declare function Pill({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, color, getRef, margin, id, ...rest }: PillProps): React.JSX.Element; export {};