import React, { ChangeEventHandler } from 'react'; export interface MultiSelectInputProps { prefixCls: string; style?: React.CSSProperties; defaultValue: []; onChange?: ChangeEventHandler; options: []; placeholder?: string; } declare const MultiSelectInput: React.FC; export default MultiSelectInput;