import { OffsetStyle } from '../styling/offset-style'; import { FacetField } from './interfaces/facet-field'; export declare class SearchFacetsEntity { IndexCatalogue: string | null; SelectedFacets: FacetField[]; SortType?: string; DisplayItemCount: boolean; IsShowMoreLessButtonActive: boolean; SfViewName: string; Margins?: OffsetStyle | null; SfWidgetLabel: string; WidgetCssClass: string | null; SearchFields?: string | null; FilterResultsLabel: string | null; AppliedFiltersLabel: string | null; ClearAllLabel: string | null; ShowMoreLabel: string | null; ShowLessLabel: string | null; Attributes: { [key: string]: Array<{ Key: string; Value: string; }>; } | null; }