import React from "react"; import { InputHistory } from "../input-history/index.ts"; interface Props { inputHistory: InputHistory; value: string; onChange: (s: string) => any; onSubmit: () => any; } export declare const InputWithHistory: React.MemoExoticComponent<(props: Props) => React.JSX.Element>; export {};