import type { ChipOption, ChipsInputBaseProps } from '../ChipsInputBase/types';
import type { FormFieldProps } from '../FormField/FormField';
import { type UseChipsInputProps } from './useChipsInput';
export interface ChipsInputProps extends ChipsInputBaseProps , UseChipsInputProps , Pick {
/**
* Если `true`, то справа будет отображаться кнопка для очистки значения.
*/
allowClearButton?: boolean | undefined;
}
/**
* @see https://vkui.io/components/chips-input
*/
export declare const ChipsInput: ({ value: valueProp, defaultValue, onChange, getRef, inputValue: inputValueProp, defaultInputValue: defaultInputValueProp, onInputChange: onInputChangeProp, getOptionValue, getOptionLabel, getNewOptionData, disabled: disabledProp, readOnly: readOnlyProp, onFocus: onFocusProp, onBlur: onBlurProp, id: idProp, placeholder: placeholderProp, allowClearButton, delimiter, slotProps, ...restProps }: ChipsInputProps ) => React.ReactNode;
//# sourceMappingURL=ChipsInput.d.ts.map