export default UserSearchBar; declare function UserSearchBar({ style, title, defaultValue, onChange, readonly, required, showDetailsPopup, navigate, oneFilter, isFocus, showTitle, }: { style?: any; title?: string; defaultValue?: any; onChange?: (value: any) => any; readonly?: boolean; required?: boolean; showDetailsPopup?: boolean; navigate?: boolean; oneFilter?: boolean; isFocus?: boolean; showTitle?: boolean; }): React.JSX.Element; import React from 'react';