import React from 'react'; import type { OldChipInputProps, OldChipInputValue } from './converter.old'; export type ChipInputValue = OldChipInputValue; export type ChipInputProps = OldChipInputProps; export declare const ChipInput: React.ForwardRefExoticComponent & { value?: OldChipInputValue[] | undefined; z_index?: number | undefined; onChange?: ((value: OldChipInputValue[]) => void) | undefined; } & React.RefAttributes>;