import { default as React } from 'react'; import { BaseComponentProps, ComponentEvent } from '../types'; interface ChipsProps extends BaseComponentProps, Omit, 'onChange'> { value?: string[]; onChange?: (event: ComponentEvent) => void; placeholder?: string; maxItems?: number; allowDuplicates?: boolean; separator?: string; disabled?: boolean; readonly?: boolean; id?: string; name?: string; ariaLabel?: string; commitOnTab?: boolean; } export declare const Chips: React.ForwardRefExoticComponent>; export {};