import React from 'react'; interface ProjectSearchBarProps { style?: any; title?: string; defaultValue?: string; onChange?: (any: any) => void; readonly?: boolean; required?: boolean; manageTimeSpent?: boolean; isMemberRequired?: boolean; inProgress?: boolean; } declare const ProjectSearchBar: (props: ProjectSearchBarProps) => React.JSX.Element; export default ProjectSearchBar;