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; } /** * @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, allowClearButton, delimiter, slotProps, ...restProps }: ChipsInputProps) => React.ReactNode; //# sourceMappingURL=ChipsInput.d.ts.map