import React from 'react'; export type Props = { handleChange: (e: React.ChangeEvent) => void; placeholder?: string; }; export declare const Search: React.FC;