import React, { CSSProperties } from 'react'; import { SearchFormProps } from './SearchForm'; import { FormComponentProps } from '../../utils'; export interface SearchFromBarProps extends FormComponentProps { onSearch: (searchParam: any) => void; formRender: (props: SearchFormProps) => React.ReactNode; searchParam: any; style?: CSSProperties; } export declare const SearchBar: React.FC>;