import React from 'react'; type Props = { onClick: () => void; }; declare const SearchButton: ({ onClick }: Props) => React.JSX.Element; export { SearchButton };