import * as react from 'react'; interface PillboxProps { value?: string[]; defaultValue?: string[]; onChange?: (values: string[]) => void; placeholder?: string; maxItems?: number; disabled?: boolean; className?: string; } declare const Pillbox: react.ForwardRefExoticComponent>; export { Pillbox, type PillboxProps };