/// <reference types="react" />
import { QueryWrapperChildProps, TopLevelControlsState } from './QueryWrapper';
export declare type FullTextSearchProps = Pick<QueryWrapperChildProps, 'executeQueryRequest' | 'getLastQueryRequest'> & {
    topLevelControlsState?: Pick<TopLevelControlsState, 'showSearchBar' | 'showFacetFilter'>;
};
export declare function FullTextSearch(props: FullTextSearchProps): JSX.Element;
export default FullTextSearch;
