import { InputHTMLAttributes } from "react"; export interface SearchInputProps extends InputHTMLAttributes { onSearch: (keyword: string) => any; onReset: () => any; }