import React from "react"; declare type IProps = { dataList: Array; refContainer: React.MutableRefObject; onListKeyPress: any; onListClick(e: React.MouseEvent): any; setIsMatched?(foo?: boolean): any; currentValue?: string; alwaysListShow?: boolean; }; declare const List: React.FC; export default List;