import * as React from 'react'; declare type Props = { onSearch: () => void; onChange?: (e: React.SyntheticEvent) => void; isDisabled?: boolean; invalidMessage?: string; }; declare function SearchBarStateless({ onSearch, ...props }: Props): JSX.Element; export default SearchBarStateless;