/// import { FilterTypeProps } from './types'; /** * Filter using text provided by the user. * Text needs to be submitted/confirmed by clicking search button or by pressing Enter key. * * FilterTypeProps are interpeted as follows: * 1) selectedFilters - list of strings provided by the user * 2) onFilterUpdate - accepts the list of strings (from user input) */ export declare const FreetextFilter: ({ filterId, selectedFilters, onFilterUpdate, title, showFilter, placeholderLabel, }: FilterTypeProps) => JSX.Element;