/// import React from 'react'; type SearchBarProps = { onSubmit?: (event: React.FormEvent) => void; children: React.ReactNode; }; declare const SearchBar: ({ onSubmit, children }: SearchBarProps) => JSX.Element; export { SearchBarProps, SearchBar };