import { FC } from 'react'; interface Props { onStartSearch: (kw: string) => void; } declare const TextSearchBox: FC; export default TextSearchBox;