import React, { type ReactElement, type Ref } from 'react'; import { type ChipInputProps, type ChipInputValue, type OptionsType } from './ChipInput.types'; export declare const ForwardChipInput: ({ value: propValue, defaultValue: propDefaultValue, onChange, error, label, labelProps, errorProps, description, descriptionProps, renderItem, size, icon, iconColor, wrapperProps, placeholder, ...inputProps }: ChipInputProps, forwardedRef: React.ForwardedRef) => import("react/jsx-runtime").JSX.Element; /** * @Draft * ChipInput은 현재 안정성이 보장되지 않습니다. MultiSelect와 같이 사용해주세요. */ declare const ChipInput: >(props: Omit & Pick & { wrapperProps?: import("../../..").ElementProps<"div"> | undefined; } & { value?: ChipInputValue[] | undefined; defaultValue?: ChipInputValue[] | undefined; onChange?: ((value?: ChipInputValue[] | undefined) => void) | undefined; renderItem?: ((value: ChipInputValue) => React.ReactNode) | undefined; } & { ref?: React.Ref | undefined; }) => ReactElement; export default ChipInput; //# sourceMappingURL=ChipInput.d.ts.map