import React from "react"; export interface PureInputProps { inputValue: string; onChange: (value: any[]) => void; onSelect: (value: any[]) => void; } export declare const PureInput: React.ForwardRefExoticComponent>;