import { ViewPropsBase } from '../common/view-props-base'; import { SearchFacetsEntity } from './search-facets.entity'; export interface SearchFacetsViewProps extends ViewPropsBase { indexCatalogue: string | null; appliedFiltersLabel: string | null; clearAllLabel: string | null; filterResultsLabel: string | null; showMoreLabel: string | null; showLessLabel: string | null; isShowMoreLessButtonActive: boolean; displayItemCount: boolean; isEdit: boolean; webserviceApiKey?: string; }