import React, { Component } from "react"; import { Form } from "antd"; import Autocomplete, { OptionCallbackFunc, OptionsCallbackFunc } from "./Autocomplete"; interface IProps { formRef: React.RefObject, label: string, name: string, required?: boolean; value?: string; getOption: (s: string, fn: OptionCallbackFunc) => void, getOptions: (s: string, fn: OptionsCallbackFunc) => void, } class AutocompleteInput extends Component { render() { return( ); } } export default AutocompleteInput;