import * as React from "react"; interface Input { clear: () => void; onChange: (e: React.FormEvent) => void; setValue: (value: string | ((val: string) => string)) => void; value: string; } export default function useInput(initial?: string): Input; export {};